Skip to content

Commit fa375d4

Browse files
Laravel 12.x Compatibility (#203)
* Bump dependencies for Laravel 12 * Update GitHub Actions for Laravel 12 * Update run-tests.yml --------- Co-authored-by: Freek Van der Herten <[email protected]>
1 parent 27ed5ab commit fa375d4

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/run-tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
php: [8.2]
14-
laravel: ['10.*', '11.*']
13+
php: [8.4, 8.3, 8.2]
14+
laravel: ['10.*', '11.*', '12.*']
1515
dependency-version: [prefer-lowest, prefer-stable]
1616

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

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@
2727
],
2828
"require": {
2929
"php": "^8.2",
30-
"illuminate/support": "^10.0|^11.0",
31-
"illuminate/view": "^10.0|^11.0",
32-
"illuminate/cookie": "^10.0|^11.0",
30+
"illuminate/support": "^10.0|^11.0|^12.0",
31+
"illuminate/view": "^10.0|^11.0|^12.0",
32+
"illuminate/cookie": "^10.0|^11.0|^12.0",
3333
"spatie/laravel-package-tools": "^1.9"
3434
},
3535
"require-dev": {
3636
"fakerphp/faker": "^1.9",
37-
"orchestra/testbench": "^8.0|^9.0",
38-
"pestphp/pest": "^2.34"
37+
"orchestra/testbench": "^8.0|^9.0|^10.0",
38+
"pestphp/pest": "^2.34|^3.7"
3939
},
4040
"autoload": {
4141
"psr-4": {

0 commit comments

Comments
 (0)