File tree Expand file tree Collapse file tree 9 files changed +11
-11
lines changed Expand file tree Collapse file tree 9 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 34
34
"illuminate/process" : " ^12.17" ,
35
35
"illuminate/support" : " ^12.17" ,
36
36
"illuminate/testing" : " ^12.17" ,
37
- "laravel-zero/foundation" : " ^12.17" ,
37
+ "laravel-zero/foundation" : " ^12.17.1 " ,
38
38
"laravel/prompts" : " ^0.3.1" ,
39
39
"league/flysystem" : " ^3.29.1" ,
40
- "nunomaduro/collision" : " ^8.5.0 " ,
40
+ "nunomaduro/collision" : " ^8.8 " ,
41
41
"nunomaduro/laravel-console-summary" : " ^1.12.1" ,
42
42
"nunomaduro/laravel-console-task" : " ^1.9" ,
43
43
"nunomaduro/laravel-desktop-notifier" : " ^2.8.1" ,
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ final class Installer extends AbstractInstaller
47
47
*/
48
48
public function install (): void
49
49
{
50
- $ this ->require ('illuminate/database "^11.5 " ' );
50
+ $ this ->require ('illuminate/database "^12.17 " ' );
51
51
$ this ->require ('fakerphp/faker "^1.23" ' , true );
52
52
53
53
$ this ->task (
Original file line number Diff line number Diff line change @@ -35,6 +35,6 @@ final class Installer extends AbstractInstaller
35
35
*/
36
36
public function install (): void
37
37
{
38
- $ this ->require ('illuminate/http "^11.5 " ' );
38
+ $ this ->require ('illuminate/http "^12.17 " ' );
39
39
}
40
40
}
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ final class Installer extends AbstractInstaller
41
41
*/
42
42
public function install (): void
43
43
{
44
- $ this ->require ('illuminate/log "^11.5 " ' );
44
+ $ this ->require ('illuminate/log "^12.17 " ' );
45
45
46
46
$ this ->task (
47
47
'Creating default logging configuration ' ,
Original file line number Diff line number Diff line change @@ -43,8 +43,8 @@ public function install(): void
43
43
{
44
44
$ this ->call ('app:install ' , ['component ' => 'database ' ]);
45
45
46
- $ this ->require ('illuminate/bus "^11.5 " ' );
47
- $ this ->require ('illuminate/queue "^11.5 " ' );
46
+ $ this ->require ('illuminate/bus "^12.17 " ' );
47
+ $ this ->require ('illuminate/queue "^12.17 " ' );
48
48
49
49
$ this ->task (
50
50
'Creating default queue configuration ' ,
Original file line number Diff line number Diff line change @@ -27,6 +27,6 @@ final class Installer extends AbstractInstaller
27
27
/** {@inheritdoc} */
28
28
public function install (): void
29
29
{
30
- $ this ->require ('illuminate/redis "^11.5 " ' );
30
+ $ this ->require ('illuminate/redis "^12.17 " ' );
31
31
}
32
32
}
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ final class Installer extends AbstractInstaller
41
41
*/
42
42
public function install (): void
43
43
{
44
- $ this ->require ('illuminate/view "^11.5 " ' );
44
+ $ this ->require ('illuminate/view "^12.17 " ' );
45
45
46
46
$ this ->task (
47
47
'Creating resources/views folder ' ,
Original file line number Diff line number Diff line change 15
15
16
16
$ composerMock ->expects ($ this ->once ())
17
17
->method ('require ' )
18
- ->with ('illuminate/log "^11.5 " ' );
18
+ ->with ('illuminate/log "^12.17 " ' );
19
19
20
20
$ this ->app ->instance (ComposerContract::class, $ composerMock );
21
21
Original file line number Diff line number Diff line change 10
10
11
11
$ composerMock ->expects ($ this ->once ())
12
12
->method ('require ' )
13
- ->with ('illuminate/redis "^11.5 " ' , false );
13
+ ->with ('illuminate/redis "^12.17 " ' , false );
14
14
15
15
$ this ->app ->instance (ComposerContract::class, $ composerMock );
16
16
You can’t perform that action at this time.
0 commit comments