Skip to content

Commit c367385

Browse files
committed
Add Laravel 12.x support
1 parent ee2556e commit c367385

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,18 @@ jobs:
1818
fail-fast: true
1919
matrix:
2020
php: [8.3, 8.2, 8.1]
21-
laravel: [11.*, 10.*]
21+
laravel: [12.*, 11.*, 10.*]
2222
dependency-version: [prefer-lowest, prefer-stable]
2323
include:
24+
- laravel: 12.*
25+
testbench: 10.*
2426
- laravel: 10.*
2527
testbench: 8.*
2628
- laravel: 11.*
2729
testbench: 9.*
2830
exclude:
31+
- laravel: 12.*
32+
php: 8.1
2933
- laravel: 11.*
3034
php: 8.1
3135

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@
2020
],
2121
"require": {
2222
"php": "^8.1|^8.2|^8.3",
23-
"illuminate/database": "^10.0|^11.0",
24-
"illuminate/support": "^10.0|^11.0",
23+
"illuminate/database": "^10.0|^11.0|^12.0",
24+
"illuminate/support": "^10.0|^11.0|^12.0",
2525
"spatie/laravel-package-tools": "^1.13"
2626
},
2727
"require-dev": {
2828
"laravel/pint": "^1.2",
29-
"orchestra/testbench": "^8.0|^9.0",
30-
"pestphp/pest": "^2.10",
31-
"pestphp/pest-plugin-laravel": "^2.2",
29+
"orchestra/testbench": "^8.0|^9.0|^10.0",
30+
"pestphp/pest": "^2.10|^3.0",
31+
"pestphp/pest-plugin-laravel": "^2.2|^3.0",
3232
"spatie/laravel-ray": "^1.31"
3333
},
3434
"autoload": {

0 commit comments

Comments
 (0)