{
    "name": "laravel-notification-channels/telegram",
    "description": "Telegram Notifications Channel for Laravel",
    "keywords": [
        "telegram notification",
        "laravel",
        "telegram",
        "notification",
        "telegram notifications channel"
    ],
    "homepage": "https://github.com/laravel-notification-channels/telegram",
    "license": "MIT",
    "authors": [
        {
            "name": "Irfaq Syed",
            "email": "syed@lukonet.com",
            "homepage": "https://lukonet.com",
            "role": "Developer"
        }
    ],
    "require": {
        "php": ">=7.1",
        "ext-json": "*",
        "guzzlehttp/guzzle": "^6.2 || ^7.0",
        "illuminate/notifications": "^5.5 || ^6.0 || ^7.0 || ^8.0",
        "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0"
    },
    "require-dev": {
        "mockery/mockery": "^1.3",
        "phpunit/phpunit": "^7.0 || ^8.0"
    },
    "autoload": {
        "psr-4": {
            "NotificationChannels\\Telegram\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "NotificationChannels\\Telegram\\Test\\": "tests"
        }
    },
    "scripts": {
        "test": "phpunit",
        "test:coverage": "phpunit --coverage-text --coverage-clover=coverage.clover"
    },
    "config": {
        "sort-packages": true
    },
    "extra": {
        "laravel": {
            "providers": [
                "NotificationChannels\\Telegram\\TelegramServiceProvider"
            ]
        }
    }
}
