{
    "name": "laravel-notification-channels/twilio",
    "description": "Provides Twilio notification channel for Laravel.",
    "keywords": ["laravel", "twilio", "notification", "sms", "call", "mms"],
    "license": "MIT",
    "support": {
        "issues": "https://github.com/laravel-notification-channels/twilio/issues",
        "source": "https://github.com/laravel-notification-channels/twilio"
    },
    "authors": [
        {
            "name": "Gregorio Hernández Caso",
            "email": "gregoriohc@gmail.com",
            "homepage": "https://github.com/gregoriohc",
            "role": "Developer"
        }
    ],
    "require": {
        "php": ">=7.2",
        "twilio/sdk": "~5.16",
        "illuminate/notifications": "^5.5 || ^6.0 || ^7.0",
        "illuminate/support": "^5.5 || ^6.0 || ^7.0",
        "illuminate/events": "^5.5 || ^6.0 || ^7.0",
        "illuminate/queue": "^5.5 || ^6.0 || ^7.0"
    },
    "require-dev": {
        "mockery/mockery": "^1.3",
        "phpunit/phpunit": "^8.5"
    },
    "autoload": {
        "psr-4": {
            "NotificationChannels\\Twilio\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "NotificationChannels\\Twilio\\Test\\": "tests"
        }
    },
    "scripts": {
        "test": "vendor/bin/phpunit"
    },
    "config": {
        "sort-packages": true
    },
    "extra": {
        "laravel": {
            "providers": [
                "NotificationChannels\\Twilio\\TwilioProvider"
            ]
        }
    }
}
