Skip to content

Commit 041a9b3

Browse files
authored
Add Laravel 12.x support (#29)
1 parent 57ce4eb commit 041a9b3

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.github/workflows/pest.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,11 @@ jobs:
1818
fail-fast: true
1919
matrix:
2020
php: [8.3, 8.2, 8.1]
21-
laravel: [11.*, 10.*, 9.*]
21+
laravel: [12.*, 11.*, 10.*, 9.*]
2222
dependency-version: [prefer-lowest, prefer-stable]
2323
include:
24+
- laravel: 12.*
25+
testbench: 10.*
2426
- laravel: 11.*
2527
testbench: 9.*
2628
- laravel: 10.*
@@ -30,6 +32,8 @@ jobs:
3032
exclude:
3133
- laravel: 11.*
3234
php: 8.1
35+
- laravel: 12.*
36+
php: 8.1
3337

3438
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
3539

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121
"require": {
2222
"php": "^8.1|^8.2|^8.3",
2323
"ext-json": "*",
24-
"illuminate/contracts": "^9.0|^10.0|^11.0",
25-
"illuminate/support": "^9.0|^10.0|^11.0"
24+
"illuminate/contracts": "^9.0|^10.0|^11.0|^12.0",
25+
"illuminate/support": "^9.0|^10.0|^11.0|^12.0"
2626
},
2727
"require-dev": {
2828
"laravel/pint": "^1.5",
29-
"orchestra/testbench": "^7.0|^8.0|^9.0",
30-
"pestphp/pest": "^1.22|^2.0",
31-
"pestphp/pest-plugin-laravel": "^1.3|^2.0",
29+
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
30+
"pestphp/pest": "^1.22|^2.0|^3.0",
31+
"pestphp/pest-plugin-laravel": "^1.3|^2.0|^3.0",
3232
"spatie/laravel-ray": "^1.31"
3333
},
3434
"autoload": {

0 commit comments

Comments
 (0)