Skip to content

Commit 3bf2ac6

Browse files
committed
Laravel 12 support
1 parent 870731c commit 3bf2ac6

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/run-tests.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
fail-fast: true
1212
matrix:
1313
os: [ubuntu-latest]
14-
php: [ 8.3, 8.2 ]
15-
laravel: [ '10.*', '11.*' ]
14+
php: [ 8.4, 8.3 ]
15+
laravel: [ ^12.0, ^11.0 ]
1616
stability: [prefer-lowest, prefer-stable]
1717
include:
18-
- laravel: 11.*
19-
testbench: 9.*
20-
- laravel: 10.*
21-
testbench: 8.*
18+
- laravel: ^12.0
19+
testbench: ^10.0
20+
- laravel: ^11.0
21+
testbench: ^9.0
2222

2323
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2424

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
}
1010
],
1111
"require": {
12-
"php": "^8.2",
12+
"php": "^8.3",
1313
"livewire/livewire": "^3.0"
1414
},
1515
"require-dev": {
1616
"laravel/pint": "^1.0",
17-
"orchestra/testbench": "^8.0|^9.0",
18-
"phpunit/phpunit": "^10.5|^11.0",
17+
"orchestra/testbench": "^9.0|^10.0",
18+
"phpunit/phpunit": "^11.0",
1919
"rcrowe/twigbridge": "^0.14.1"
2020
},
2121
"suggest": {
@@ -45,4 +45,4 @@
4545
"format": "vendor/bin/pint",
4646
"test": "vendor/bin/phpunit"
4747
}
48-
}
48+
}

0 commit comments

Comments
 (0)