Commit 6c6bbd0 authored Feb 20, 2025 · 12 / 12 · Verified
1 parent 621ff5d commit 6c6bbd0 Copy full SHA for 6c6bbd0
File tree 3 files changed +10
-10
lines changed
3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 17
17
fail-fast : true
18
18
matrix :
19
19
php : [8.2, 8.3, 8.4]
20
- laravel : [11]
20
+ laravel : [11, 12 ]
21
21
22
22
name : PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
23
23
49
49
fail-fast : true
50
50
matrix :
51
51
stack : [inertia, livewire]
52
- laravel : ['11.x-dev']
52
+ laravel : ['11.x-dev', 'dev-master' ]
53
53
54
54
name : Test Stubs - Laravel ${{ matrix.laravel }} - ${{ matrix.stack }}
55
55
65
65
66
66
- name : Setup Laravel
67
67
run : |
68
- composer create-project laravel/laravel:^ ${{ matrix.laravel }} .
68
+ composer create-project laravel/laravel:${{ matrix.laravel }} .
69
69
composer require laravel/jetstream:@dev --no-interaction --no-update
70
70
composer config repositories.jetstream '{"type": "path", "url": "jetstream"}' --file composer.json
71
71
Original file line number Diff line number Diff line change 16
16
"require" : {
17
17
"php" : " ^8.2.0" ,
18
18
"ext-json" : " *" ,
19
- "illuminate/console" : " ^11.0" ,
20
- "illuminate/support" : " ^11.0" ,
19
+ "illuminate/console" : " ^11.0|^12.0 " ,
20
+ "illuminate/support" : " ^11.0|^12.0 " ,
21
21
"laravel/fortify" : " ^1.20" ,
22
22
"mobiledetect/mobiledetectlib" : " ^4.8.08" ,
23
23
"symfony/console" : " ^7.0"
24
24
},
25
25
"require-dev" : {
26
- "inertiajs/inertia-laravel" : " ^1 .0" ,
26
+ "inertiajs/inertia-laravel" : " ^2 .0" ,
27
27
"laravel/sanctum" : " ^4.0" ,
28
28
"livewire/livewire" : " ^3.3" ,
29
29
"mockery/mockery" : " ^1.0" ,
30
- "orchestra/testbench" : " ^9.0" ,
30
+ "orchestra/testbench" : " ^9.0|^10.0 " ,
31
31
"phpstan/phpstan" : " ^1.10" ,
32
- "phpunit/phpunit" : " ^10.4 "
32
+ "phpunit/phpunit" : " ^11.0 "
33
33
},
34
34
"autoload" : {
35
35
"psr-4" : {
Original file line number Diff line number Diff line change @@ -344,7 +344,7 @@ protected function livewireRouteDefinition()
344
344
protected function installInertiaStack ()
345
345
{
346
346
// Install Inertia...
347
- if (! $ this ->requireComposerPackages ('inertiajs/inertia-laravel:^1 .0 ' , 'tightenco/ziggy:^2.0 ' )) {
347
+ if (! $ this ->requireComposerPackages ('inertiajs/inertia-laravel:^2 .0 ' , 'tightenco/ziggy:^2.0 ' )) {
348
348
return false ;
349
349
}
350
350
@@ -355,7 +355,7 @@ protected function installInertiaStack()
355
355
// Install NPM packages...
356
356
$ this ->updateNodePackages (function ($ packages ) {
357
357
return [
358
- '@inertiajs/vue3 ' => '^1.0.14 ' ,
358
+ '@inertiajs/vue3 ' => '^2.0 ' ,
359
359
'@tailwindcss/forms ' => '^0.5.7 ' ,
360
360
'@tailwindcss/typography ' => '^0.5.10 ' ,
361
361
'@vitejs/plugin-vue ' => '^5.0.0 ' ,
You can’t perform that action at this time.
0 commit comments