Skip to content

Commit dba153f

Browse files
jonnottKentarouTakedabarryvdh
authored
Laravel 12 support (#1672)
* Laravel 12 support * Update run-integration-tests.yml to include Laravel 12 * Update run-tests.yml to include Laravel 12 * allow testbench ^10 * Update run-integration-tests.yml * Update run-tests.yml * Update composer.json Co-authored-by: KentarouTakeda <[email protected]> * Update run-integration-tests.yml * Update run-tests.yml --------- Co-authored-by: KentarouTakeda <[email protected]> Co-authored-by: Barry vd. Heuvel <[email protected]>
1 parent 40485e7 commit dba153f

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
php: [8.4, 8.3, 8.2]
23-
laravel: [^11.15]
23+
laravel: [11.x, 12.x]
2424

2525
name: P${{ matrix.php }} - Laravel${{ matrix.laravel }}
2626
steps:

.github/workflows/run-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
matrix:
2323
os: [ubuntu-22.04, windows-2019]
2424
php: [8.4, 8.3, 8.2]
25-
laravel: [^11.15]
25+
laravel: [~11.15, 12.x]
2626
stability: [prefer-lowest, prefer-stable]
2727
steps:
2828
- name: Set git to use LF

composer.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@
2525
"ext-json": "*",
2626
"barryvdh/reflection-docblock": "^2.3",
2727
"composer/class-map-generator": "^1.0",
28-
"illuminate/console": "^11.15",
29-
"illuminate/database": "^11.15",
30-
"illuminate/filesystem": "^11.15",
31-
"illuminate/support": "^11.15"
28+
"illuminate/console": "^11.15|^12",
29+
"illuminate/database": "^11.15|^12",
30+
"illuminate/filesystem": "^11.15|^12",
31+
"illuminate/support": "^11.15|^12"
3232
},
3333
"require-dev": {
3434
"ext-pdo_sqlite": "*",
3535
"friendsofphp/php-cs-fixer": "^3",
36-
"illuminate/config": "^11.15",
37-
"illuminate/view": "^11.15",
36+
"illuminate/config": "^11.15|^12",
37+
"illuminate/view": "^11.15|^12",
3838
"mockery/mockery": "^1.4",
39-
"orchestra/testbench": "^9.2",
40-
"phpunit/phpunit": "^10.5",
39+
"orchestra/testbench": "^9.2|^10",
40+
"phpunit/phpunit": "^10.5|^11.5.3",
4141
"spatie/phpunit-snapshot-assertions": "^4 || ^5",
4242
"vimeo/psalm": "^5.4",
4343
"vlucas/phpdotenv": "^5"

0 commit comments

Comments
 (0)