Skip to content

Commit

Permalink
Merge pull request #8 from laravel-shift/l10-compatibility
Browse files Browse the repository at this point in the history
Laravel 10.x Compatibility
  • Loading branch information
BSN4 authored Jan 31, 2023
2 parents 23d9666 + cc8f501 commit 7c51df5
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 44 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
88 changes: 46 additions & 42 deletions composer.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]"
}
],
"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": "[email protected]"
}
],
"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
}

0 comments on commit 7c51df5

Please sign in to comment.