Skip to content

Commit 0740a62

Browse files
authored
Add Laravel 9 support (#7)
1 parent c94cfd2 commit 0740a62

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
php: [7.4, 8.0, 8.1]
17-
laravel: [8.*]
17+
laravel: [8.*, 9.*]
18+
exclude:
19+
- php: 7.4
20+
laravel: 9.*
1821

1922
name: PHP:${{ matrix.php }} / Laravel:${{ matrix.laravel }}
2023

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
],
1111
"require": {
1212
"php": "^7.4|^8.0",
13-
"laravel/framework": "^8.0|dev-master",
13+
"laravel/framework": "^8.0|^9.0|dev-master",
1414
"livewire/livewire": "^2.3.6|dev-master"
1515
},
1616
"autoload": {

0 commit comments

Comments
 (0)