Skip to content

Commit ed007c2

Browse files
committed
Add support for Laravel 9
1 parent ed4cc49 commit ed007c2

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/run-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
php: [ 8.0, 8.1 ]
12-
laravel: [ 8.* ]
12+
laravel: [ 8.*, 9.* ]
1313
dependency-version: [ prefer-stable ]
1414
include:
1515
- laravel: 5.7.*
@@ -35,6 +35,8 @@ jobs:
3535
testbench: 6.*
3636
- laravel: 8.*
3737
testbench: 6.*
38+
- laravel: 9.*
39+
testbench: 7.*
3840

3941
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
4042

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
"require": {
1818
"php": "^7.1|^8.0",
1919
"codezero/dotenv-updater": "^1.1",
20-
"illuminate/support": "^5.7|^6.0|^7.0|^8.0"
20+
"illuminate/support": "^5.7|^6.0|^7.0|^8.0|^9.0"
2121
},
2222
"require-dev": {
23-
"orchestra/testbench": "^3.7|^4.0|^5.0|^6.0",
23+
"orchestra/testbench": "^3.7|^4.0|^5.0|^6.0|^7.0",
2424
"phpunit/phpunit": "^7.0|^8.0|^9.0"
2525
},
2626
"scripts": {

0 commit comments

Comments
 (0)