Skip to content

Commit 0d3c23a

Browse files
committed
Add support for Laravel 9
1 parent 4eb61e4 commit 0d3c23a

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
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.6.*
@@ -38,6 +38,8 @@ jobs:
3838
testbench: 6.*
3939
- laravel: 8.*
4040
testbench: 6.*
41+
- laravel: 9.*
42+
testbench: 7.*
4143

4244
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
4345

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
"require": {
2424
"php": "^7.1|^8.0",
2525
"codezero/browser-locale": "^3.0",
26-
"illuminate/support": "^5.6|^6.0|^7.0|^8.0"
26+
"illuminate/support": "^5.6|^6.0|^7.0|^8.0|^9.0"
2727
},
2828
"require-dev": {
2929
"mockery/mockery": "^1.3.3",
30-
"orchestra/testbench": "^3.6|^4.0|^5.0|^6.0",
30+
"orchestra/testbench": "^3.6|^4.0|^5.0|^6.0|^7.0",
3131
"phpunit/phpunit": "^7.0|^8.0|^9.0"
3232
},
3333
"scripts": {
@@ -57,4 +57,4 @@
5757
},
5858
"minimum-stability": "dev",
5959
"prefer-stable": true
60-
}
60+
}

0 commit comments

Comments
 (0)