Skip to content

Commit 0c5c79d

Browse files
authored
Merge pull request #5 from nicko170/laravel-9-support
Adding laravel 9 support
2 parents 6e10b23 + 129d12e commit 0c5c79d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: true
1212
matrix:
13-
php: [7.4, 8.0]
13+
php: [7.4, 8.0, 8.1, 8.2]
1414

1515
name: Tests on PHP ${{ matrix.php }} - ${{ matrix.stability }}
1616

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@
77
{
88
"name": "Nick Pratley",
99
"email": "[email protected]",
10-
"homepage": "https://devlan.io/",
10+
"homepage": "https://npratley.net/",
1111
"role": "Developer"
1212
}
1313
],
1414
"require": {
15-
"php": ">=7.4 | ^8.0",
1615
"ext-json": "*",
17-
"guzzlehttp/guzzle": "~6.0",
18-
"illuminate/notifications": "~6.0 || ~7.0 || ~8.0",
19-
"illuminate/support": "~6.0 || ~7.0 || ~8.0"
16+
"php": ">=7.4 || ^8.0 || ^8.1 || ^8.2",
17+
"guzzlehttp/guzzle": "~6.0 || ~7.0",
18+
"illuminate/notifications": "~6.0 || ~7.0 || ~8.0 || ~9.0",
19+
"illuminate/support": "~6.0 || ~7.0 || ~8.0 || ~9.0"
2020
},
2121
"require-dev": {
2222
"mockery/mockery": "^1.0",

0 commit comments

Comments
 (0)