Skip to content

Commit 7be96fe

Browse files
committed
Support for Laravel 12
1 parent 02fd97c commit 7be96fe

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/run-tests.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
php: [8.4, 8.3, 8.2]
12-
laravel: [11.*, 10.*]
12+
laravel: [12.*, 11.*, 10.*]
1313
dependency-version: [prefer-lowest, prefer-stable]
1414
include:
15+
- laravel: 12.*
16+
testbench: 10.*
1517
- laravel: 11.*
1618
testbench: 9.*
1719
- laravel: 10.*

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
"require": {
1111
"php": "^8.4 || ^8.3 || ^8.2",
1212
"laravel/browser-kit-testing": "^7.0",
13-
"illuminate/http": "^10.0|^11.0",
14-
"illuminate/support": "^10.0|^11.0",
15-
"symfony/dom-crawler": "^6.0"
13+
"illuminate/http": "^10.0|^11.0|^12.0",
14+
"illuminate/support": "^10.0|^11.0|^12.0",
15+
"symfony/dom-crawler": "^6.0|^7.0"
1616
},
1717
"require-dev": {
18-
"orchestra/testbench": "^8.0|^9.0",
19-
"phpunit/phpunit": "^10.4"
18+
"orchestra/testbench": "^8.0|^9.0|^10.0",
19+
"phpunit/phpunit": "^10.4|^11.5.3"
2020
},
2121
"license": "MIT",
2222
"authors": [

0 commit comments

Comments
 (0)