Skip to content

Commit 35b72ac

Browse files
[6.x] Laravel 12 support (#399)
Co-authored-by: Joel Butcher <[email protected]>
1 parent 662fd25 commit 35b72ac

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/breeze-stub-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: true
1818
matrix:
1919
php: [ 8.2, 8.3 ]
20-
laravel: [ 11 ]
20+
laravel: [ 11, 12 ]
2121
# stack: [ blade, livewire, "livewire-functional", react, vue, react-ts, vue-ts ]
2222
stack: [ blade, livewire, "livewire-functional", react, vue, react-ts ]
2323
tester: [ phpunit, pest ]

.github/workflows/filament-stub-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: true
1818
matrix:
1919
php: [ 8.2, 8.3 ]
20-
laravel: [ 11 ]
20+
laravel: [ 11, 12 ]
2121

2222
name: Test Filament Stubs - PHP ${{matrix.php }} – Laravel ${{ matrix.laravel }}
2323

.github/workflows/jetstream-stub-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: true
1818
matrix:
1919
php: [ 8.2, 8.3 ]
20-
laravel: [ 11 ]
20+
laravel: [ 11, 12 ]
2121
stack: [ inertia, livewire ]
2222
tester: [ phpunit, pest ]
2323

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: true
1818
matrix:
1919
php: [ 8.2, 8.3 ]
20-
laravel: [ 11 ]
20+
laravel: [ 11, 12 ]
2121

2222
name: Run Tests – PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
2323

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,22 @@
2020
],
2121
"require": {
2222
"php": "^8.2",
23-
"illuminate/contracts": "^11.0",
23+
"illuminate/contracts": "^11.0|^12.0",
2424
"laravel/prompts": "^0.1|^0.2|^0.3",
25-
"laravel/socialite": "^5.12"
25+
"laravel/socialite": "^5.18"
2626
},
2727
"require-dev": {
2828
"inertiajs/inertia-laravel": "^2.0",
2929
"laravel/breeze": "^2.3",
3030
"laravel/jetstream": "^5.0",
3131
"laravel/sanctum": "^4.0",
32-
"livewire/livewire": "^3.3.5",
32+
"livewire/livewire": "^3.5.0",
3333
"mockery/mockery": "^1.6",
34-
"orchestra/testbench": "^9.0",
35-
"orchestra/testbench-core": "^9.9.1",
36-
"pestphp/pest": "^2.0",
37-
"pestphp/pest-plugin-laravel": "^2.2",
38-
"phpunit/phpunit": "^10.5"
34+
"orchestra/testbench": "^9.0|^10.0",
35+
"orchestra/testbench-core": "^9.9.1|^10.0",
36+
"pestphp/pest": "^2.0|^3.0",
37+
"pestphp/pest-plugin-laravel": "^2.2|^3.0",
38+
"phpunit/phpunit": "^10.5.35|^11.5.3|^12.0.1"
3939
},
4040
"autoload": {
4141
"psr-4": {

0 commit comments

Comments
 (0)