Skip to content

Commit 8f77c50

Browse files
committed
Support Laravel 12
1 parent de5b875 commit 8f77c50

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
os: [ubuntu-latest, macos-latest]
12-
php: [8.2]
12+
php: [8.2, 8.3, 8.4]
1313
laravel: [10.*, 11.*]
1414
stability: [prefer-lowest, prefer-stable]
1515
include:
@@ -19,6 +19,9 @@ jobs:
1919
- laravel: 11.*
2020
testbench: 9.*
2121
workbench: 9.*
22+
- laravel: 12.*
23+
testbench: 10.*
24+
workbench: 10.*
2225

2326
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2427

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
],
2020
"require": {
2121
"php": "^8.2",
22-
"illuminate/support": "^10.0|^11.0"
22+
"illuminate/support": "^10.0|^11.0|^12.0"
2323
},
2424
"require-dev": {
2525
"laravel/pint": "^1.10",
26-
"orchestra/testbench": "^8.14|^9.0",
27-
"orchestra/workbench": "^8.0|^9.0",
26+
"orchestra/testbench": "^8.14|^9.0|^10.0",
27+
"orchestra/workbench": "^8.0|^9.0|^10.0",
2828
"phpunit/phpunit": "^10.5"
2929
},
3030
"autoload": {

0 commit comments

Comments
 (0)