Skip to content

Commit 8d2afc7

Browse files
Merge pull request #101 from laravel-shift/l9-compatibility
Laravel 9.x Compatibility
2 parents 274bc9e + 722c7ab commit 8d2afc7

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: [7.4, 8.0]
13-
laravel: [8.*]
12+
php: [8.0]
13+
laravel: [9.*]
1414
dependency-version: [prefer-stable]
1515
include:
16-
- laravel: 8.*
17-
testbench: 6.*
16+
- laravel: 9.*
17+
testbench: 7.*
1818

1919
name: PHP ${{ matrix.php }} - LARAVEL ${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2020

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
}
1010
],
1111
"require": {
12-
"php": "^7.4|^8.0",
13-
"illuminate/database": "^8.0",
14-
"illuminate/events": "^8.0"
12+
"php": "^8.0",
13+
"illuminate/database": "^9.0",
14+
"illuminate/events": "^9.0"
1515
},
1616
"require-dev": {
17-
"orchestra/testbench": "^6.0",
18-
"phpunit/phpunit": "^8.5"
17+
"orchestra/testbench": "^7.0",
18+
"phpunit/phpunit": "^9.5.10"
1919
},
2020
"autoload": {
2121
"psr-4": {

0 commit comments

Comments
 (0)