Skip to content

Commit 410f0c3

Browse files
authored
Laravel 12 support (#1730)
* Laravel 12 support * Update run-tests.yml * Update run-integration-tests.yml * Allow testbench v10
1 parent f6439aa commit 410f0c3

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

.github/workflows/run-integration-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,10 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
php: [8.4, 8.3, 8.2, 8.1]
23-
laravel: [11.*, 10.*]
23+
laravel: [12.*, 11.*, 10.*]
2424
exclude:
25+
- laravel: 12.*
26+
php: 8.1
2527
- laravel: 11.*
2628
php: 8.1
2729
name: P${{ matrix.php }} - Laravel${{ matrix.laravel }}

.github/workflows/run-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,11 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
php: [8.4, 8.3, 8.2, 8.1]
24-
laravel: [^11, ^10]
24+
laravel: [^12, ^11, ^10]
2525
dependency-version: [prefer-stable]
2626
exclude:
27+
- laravel: ^12
28+
php: 8.1
2729
- laravel: ^11
2830
php: 8.1
2931

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
"require": {
2020
"php": "^8.1",
2121
"php-debugbar/php-debugbar": "2.1.x",
22-
"illuminate/routing": "^10|^11",
23-
"illuminate/session": "^10|^11",
24-
"illuminate/support": "^10|^11",
22+
"illuminate/routing": "^10|^11|^12",
23+
"illuminate/session": "^10|^11|^12",
24+
"illuminate/support": "^10|^11|^12",
2525
"symfony/finder": "^6|^7"
2626
},
2727
"require-dev": {
2828
"mockery/mockery": "^1.3.3",
29-
"orchestra/testbench-dusk": "^8|^9",
29+
"orchestra/testbench-dusk": "^8|^9|^10",
3030
"phpunit/phpunit": "^10|^11",
3131
"squizlabs/php_codesniffer": "^3.5"
3232
},

0 commit comments

Comments
 (0)