Skip to content

Commit 807f9cb

Browse files
authored
Support Laravel 12 (#312)
1 parent 4647523 commit 807f9cb

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

.github/workflows/run-tests.yml

+4-7
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,16 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
os: [ubuntu-latest]
12-
php: ["8.1", "8.2", "8.3", "8.4"]
13-
laravel: ["^10.0", "^11.0"]
12+
php: ["8.2", "8.3", "8.4"]
13+
laravel: ["^10.0", "^11.0", "^12.0"]
1414
dependency-version: [prefer-lowest, prefer-stable]
1515
include:
1616
- laravel: "^10.0"
1717
testbench: "^8.0"
1818
- laravel: "^11.0"
1919
testbench: "^9.0"
20-
exclude:
21-
- php: "8.3"
22-
laravel: "^10.0"
23-
- php: "8.1"
24-
laravel: "^11.0"
20+
- laravel: "^12.0"
21+
testbench: "^10.0"
2522

2623
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
2724

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
],
2424
"require": {
2525
"php": "^8.1",
26-
"illuminate/contracts": "^10.0|^11.0",
27-
"lorisleiva/lody": "^0.5"
26+
"illuminate/contracts": "^10.0|^11.0|^12.0",
27+
"lorisleiva/lody": "^0.6"
2828
},
2929
"require-dev": {
30-
"orchestra/testbench": "^8.0|^9.0",
31-
"pestphp/pest": "^1.23|^2.34",
32-
"phpunit/phpunit": "^9.6|^10.0"
30+
"orchestra/testbench": "^10.0",
31+
"pestphp/pest": "^2.34|^3.0",
32+
"phpunit/phpunit": "^10.5|^11.5"
3333
},
3434
"autoload": {
3535
"psr-4": {

0 commit comments

Comments
 (0)