diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fe62321..444d902 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,9 +13,19 @@ jobs: strategy: fail-fast: true matrix: - php: [7.1, 7.2, 7.3, 7.4, 8.0] - laravel: [5.8.*, ^6.0, ^7.0, ^8.0] + php: [7.1, 7.2, 7.3, 7.4, 8.0, 8.1] + laravel: [5.8.*, ^6.0, ^7.0, ^8.0, 10.*] exclude: + - php: 7.1 + laravel: 10.0 + - php: 7.2 + laravel: 10.0 + - php: 7.3 + laravel: 10.0 + - php: 7.4 + laravel: 10.0 + - php: 8.0 + laravel: 10.0 - php: 7.1 laravel: ^6.0 - php: 7.1 diff --git a/composer.json b/composer.json index 2f4da19..a399385 100644 --- a/composer.json +++ b/composer.json @@ -1,44 +1,48 @@ { - "name": "awssat/discord-notification-channel", - "description": "Discord Notification Channel for laravel.", - "keywords": ["laravel", "notifications", "discord"], - "license": "MIT", - "authors": [ - { - "name": "Bader Almutairi", - "email": "phpfalcon@gmail.com" - } - ], - "require": { - "php": "^7.1.3|^8.0", - "guzzlehttp/guzzle": "^6.0|^7.0", - "illuminate/notifications": "~5.8.0|^6.0|^7.0|^8.0|^9.0", - "laravel/slack-notification-channel": "^2.0" - }, - "require-dev": { - "mockery/mockery": "^1.0", - "phpunit/phpunit": "^7.0|^8.0|^9.0" - }, - "autoload": { - "psr-4": { - "Awssat\\Notifications\\": "src/" - } - }, - "autoload-dev": { - "psr-4": { - "Awssat\\Tests\\Notifications\\": "tests/" - } - }, - "config": { - "sort-packages": true - }, - "extra": { - "laravel": { - "providers": [ - "Awssat\\Notifications\\DiscordChannelServiceProvider" - ] - } - }, - "minimum-stability": "dev", - "prefer-stable": true + "name": "awssat/discord-notification-channel", + "description": "Discord Notification Channel for laravel.", + "keywords": [ + "laravel", + "notifications", + "discord" + ], + "license": "MIT", + "authors": [ + { + "name": "Bader Almutairi", + "email": "phpfalcon@gmail.com" + } + ], + "require": { + "php": "^7.1.3|^8.0", + "guzzlehttp/guzzle": "^6.0|^7.0", + "illuminate/notifications": "~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0", + "laravel/slack-notification-channel": "^2.0" + }, + "require-dev": { + "mockery/mockery": "^1.0", + "phpunit/phpunit": "^7.0|^8.0|^9.0" + }, + "autoload": { + "psr-4": { + "Awssat\\Notifications\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "Awssat\\Tests\\Notifications\\": "tests/" + } + }, + "config": { + "sort-packages": true + }, + "extra": { + "laravel": { + "providers": [ + "Awssat\\Notifications\\DiscordChannelServiceProvider" + ] + } + }, + "minimum-stability": "dev", + "prefer-stable": true }