Skip to content

Commit 57f8df0

Browse files
committed
Added Laravel 12 Support
1 parent 982ba09 commit 57f8df0

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/run-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ jobs:
1111
fail-fast: true
1212
matrix:
1313
php: [8.2, 8.3]
14-
laravel: [10.*, 11.*]
14+
laravel: [10.*, 11.*, 12.*]
1515
dependency-version: [prefer-lowest, prefer-stable]
1616
include:
1717
- laravel: 10.*
1818
testbench: 8.*
1919
- laravel: 11.*
2020
testbench: 9.*
21+
- laravel: 12.*
22+
testbench: 10.*
2123

2224
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2325

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
],
1111
"require": {
1212
"php": "^8.2",
13-
"illuminate/support": "^10.0|^11.0"
13+
"illuminate/support": "^10.0|^11.0|^12.0"
1414
},
1515
"require-dev": {
16-
"orchestra/testbench": "^7.0|^8.0|^9.0",
16+
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
1717
"pestphp/pest": "^2.0",
1818
"pestphp/pest-plugin-laravel": "^2.0",
1919
"spatie/pest-plugin-snapshots": "^2.1"

0 commit comments

Comments
 (0)