Skip to content

Commit 31818d0

Browse files
authored
support Laravel 12
1 parent deacba8 commit 31818d0

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@ jobs:
88
strategy:
99
fail-fast: true
1010
matrix:
11-
php: [8.3, 8.2]
12-
laravel: ["^11.0", "^10.0"]
11+
php: [8.4, 8.3, 8.2]
12+
laravel: ["^12.0", "^11.0", "^10.0"]
1313
include:
14+
- laravel: "^12.0"
15+
testbench: 10.*
1416
- laravel: "^11.0"
1517
testbench: 9.*
1618
- laravel: "^10.0"

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
"require": {
1919
"php": "^8.2",
2020
"spatie/laravel-package-tools": "^1.9.2",
21-
"illuminate/contracts": "^10.0|^11.0",
22-
"illuminate/support": "^10.0|^11.0",
23-
"illuminate/validation": "^10.0|^11.0"
21+
"illuminate/contracts": "^10.0|^11.0|^12.0",
22+
"illuminate/support": "^10.0|^11.0|^12.0",
23+
"illuminate/validation": "^10.0|^11.0|^12.0"
2424
},
2525
"require-dev": {
2626
"nunomaduro/larastan": "^2.0.1",
27-
"orchestra/testbench": "^8.0|^9.0",
28-
"pestphp/pest": "^2.0",
29-
"pestphp/pest-plugin-laravel": "^2.0",
27+
"orchestra/testbench": "^8.0|^9.0|^10.0",
28+
"pestphp/pest": "^2.0|^3.0",
29+
"pestphp/pest-plugin-laravel": "^2.0|^3.0",
3030
"phpstan/extension-installer": "^1.1",
3131
"phpstan/phpstan-deprecation-rules": "^1.0"
3232
},

0 commit comments

Comments
 (0)