{
    "name": "laravel-notification-channels/telegram",
    "description": "Telegram Notifications Channel for Laravel",
    "license": "MIT",
    "keywords": [
        "telegram notification",
        "laravel",
        "telegram",
        "notification",
        "telegram notifications channel"
    ],
    "authors": [
        {
            "name": "Irfaq Syed",
            "email": "github@lukonet.net",
            "homepage": "https://lukonet.com",
            "role": "Developer"
        }
    ],
    "homepage": "https://github.com/laravel-notification-channels/telegram",
    "require": {
        "php": "^8.2",
        "ext-json": "*",
        "guzzlehttp/guzzle": "^7.8",
        "illuminate/contracts": "^11.0 || ^12.0",
        "illuminate/notifications": "^11.0 || ^12.0",
        "illuminate/support": "^11.0 || ^12.0"
    },
    "require-dev": {
        "larastan/larastan": "^3.0",
        "mockery/mockery": "^1.4.4",
        "orchestra/testbench": "^10.0",
        "pestphp/pest": "^3.0",
        "pestphp/pest-plugin-laravel": "^3.0",
        "phpstan/extension-installer": "^1.2",
        "phpstan/phpstan-deprecation-rules": "^2.0",
        "phpstan/phpstan-phpunit": "^2.0"
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "autoload": {
        "psr-4": {
            "NotificationChannels\\Telegram\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "NotificationChannels\\Telegram\\Tests\\": "tests"
        }
    },
    "config": {
        "allow-plugins": {
            "phpstan/extension-installer": true,
            "pestphp/pest-plugin": true
        },
        "sort-packages": true
    },
    "extra": {
        "laravel": {
            "providers": [
                "NotificationChannels\\Telegram\\TelegramServiceProvider"
            ]
        }
    },
    "scripts": {
        "post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi",
        "analyse": "phpstan analyse",
        "test": "pest",
        "test-coverage": "pest --coverage"
    }
}
