Skip to content

Commit de9d66a

Browse files
authored
Support Laravel 9.x (#60)
1 parent e8d64ae commit de9d66a

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

Diff for: .github/workflows/run-tests-l8.yml

+11-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,19 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
php: [8.0, 7.4, 7.3]
13-
laravel: [8.*]
12+
php: [8.1, 8.0, 7.4, 7.3]
13+
laravel: [9.*, 8.*]
1414
dependency-version: [prefer-lowest, prefer-stable]
15+
exclude:
16+
- laravel: 9.*
17+
php: 7.4
18+
- laravel: 9.*
19+
php: 7.3
20+
- laravel: 8.*
21+
php: 8.1
1522
include:
23+
- laravel: 9.*
24+
testbench: 7.*
1625
- laravel: 8.*
1726
testbench: 6.*
1827

Diff for: composer.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"require": {
1919
"php": "^7.3 || ^8.0",
2020
"guzzlehttp/guzzle": "~6.0 || ~7.0",
21-
"illuminate/support": "5.7.* || 5.8.* ||^6.0 || ^7.0 || ^8.0",
21+
"illuminate/support": "5.7.* || 5.8.* ||^6.0 || ^7.0 || ^8.0 || ^9.0",
2222
"symfony/dotenv": "^4.2 || ^5.1"
2323
},
2424
"require-dev": {
@@ -46,7 +46,10 @@
4646

4747
},
4848
"config": {
49-
"sort-packages": true
49+
"sort-packages": true,
50+
"allow-plugins": {
51+
"phpstan/extension-installer": true
52+
}
5053
},
5154
"extra": {
5255
"laravel": {

0 commit comments

Comments
 (0)