Skip to content

Commit e593418

Browse files
authored
Add Laravel 9 support (#4)
* Add Laravel 9 support * Add Laravel 9 support
1 parent 8a8d36d commit e593418

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/workflows/run-tests.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,15 @@ jobs:
1010
matrix:
1111
os: [ubuntu-latest, windows-latest]
1212
php: ['8.1', '8.0', '7.4', '7.3']
13-
laravel: [8.*]
13+
laravel: [^8.0, ^9.0]
1414
dependency-version: [prefer-lowest, prefer-stable]
15+
exclude:
16+
- os: windows-latest
17+
laravel: ^9.0
18+
- php: 7.3
19+
laravel: ^9.0
20+
- php: 7.4
21+
laravel: ^9.0
1522

1623
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
1724

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
],
1919
"require": {
2020
"php": "^7.3|^8.0",
21-
"illuminate/database": "^8.0",
22-
"illuminate/support": "^8.0"
21+
"illuminate/database": "^8.0|^9.0",
22+
"illuminate/support": "^8.0|^9.0"
2323
},
2424
"require-dev": {
2525
"phpunit/phpunit": "^9.4",

0 commit comments

Comments
 (0)