Skip to content

Commit 7c51df5

Browse files
authored
Merge pull request #8 from laravel-shift/l10-compatibility
Laravel 10.x Compatibility
2 parents 23d9666 + cc8f501 commit 7c51df5

2 files changed

Lines changed: 58 additions & 44 deletions

File tree

.github/workflows/tests.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,19 @@ jobs:
1313
strategy:
1414
fail-fast: true
1515
matrix:
16-
php: [7.1, 7.2, 7.3, 7.4, 8.0]
17-
laravel: [5.8.*, ^6.0, ^7.0, ^8.0]
16+
php: [7.1, 7.2, 7.3, 7.4, 8.0, 8.1]
17+
laravel: [5.8.*, ^6.0, ^7.0, ^8.0, 10.*]
1818
exclude:
19+
- php: 7.1
20+
laravel: 10.0
21+
- php: 7.2
22+
laravel: 10.0
23+
- php: 7.3
24+
laravel: 10.0
25+
- php: 7.4
26+
laravel: 10.0
27+
- php: 8.0
28+
laravel: 10.0
1929
- php: 7.1
2030
laravel: ^6.0
2131
- php: 7.1

composer.json

Lines changed: 46 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,48 @@
11
{
2-
"name": "awssat/discord-notification-channel",
3-
"description": "Discord Notification Channel for laravel.",
4-
"keywords": ["laravel", "notifications", "discord"],
5-
"license": "MIT",
6-
"authors": [
7-
{
8-
"name": "Bader Almutairi",
9-
"email": "phpfalcon@gmail.com"
10-
}
11-
],
12-
"require": {
13-
"php": "^7.1.3|^8.0",
14-
"guzzlehttp/guzzle": "^6.0|^7.0",
15-
"illuminate/notifications": "~5.8.0|^6.0|^7.0|^8.0|^9.0",
16-
"laravel/slack-notification-channel": "^2.0"
17-
},
18-
"require-dev": {
19-
"mockery/mockery": "^1.0",
20-
"phpunit/phpunit": "^7.0|^8.0|^9.0"
21-
},
22-
"autoload": {
23-
"psr-4": {
24-
"Awssat\\Notifications\\": "src/"
25-
}
26-
},
27-
"autoload-dev": {
28-
"psr-4": {
29-
"Awssat\\Tests\\Notifications\\": "tests/"
30-
}
31-
},
32-
"config": {
33-
"sort-packages": true
34-
},
35-
"extra": {
36-
"laravel": {
37-
"providers": [
38-
"Awssat\\Notifications\\DiscordChannelServiceProvider"
39-
]
40-
}
41-
},
42-
"minimum-stability": "dev",
43-
"prefer-stable": true
2+
"name": "awssat/discord-notification-channel",
3+
"description": "Discord Notification Channel for laravel.",
4+
"keywords": [
5+
"laravel",
6+
"notifications",
7+
"discord"
8+
],
9+
"license": "MIT",
10+
"authors": [
11+
{
12+
"name": "Bader Almutairi",
13+
"email": "phpfalcon@gmail.com"
14+
}
15+
],
16+
"require": {
17+
"php": "^7.1.3|^8.0",
18+
"guzzlehttp/guzzle": "^6.0|^7.0",
19+
"illuminate/notifications": "~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0",
20+
"laravel/slack-notification-channel": "^2.0"
21+
},
22+
"require-dev": {
23+
"mockery/mockery": "^1.0",
24+
"phpunit/phpunit": "^7.0|^8.0|^9.0"
25+
},
26+
"autoload": {
27+
"psr-4": {
28+
"Awssat\\Notifications\\": "src/"
29+
}
30+
},
31+
"autoload-dev": {
32+
"psr-4": {
33+
"Awssat\\Tests\\Notifications\\": "tests/"
34+
}
35+
},
36+
"config": {
37+
"sort-packages": true
38+
},
39+
"extra": {
40+
"laravel": {
41+
"providers": [
42+
"Awssat\\Notifications\\DiscordChannelServiceProvider"
43+
]
44+
}
45+
},
46+
"minimum-stability": "dev",
47+
"prefer-stable": true
4448
}

0 commit comments

Comments
 (0)