File tree 4 files changed +14
-14
lines changed
4 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 11
11
],
12
12
"require" : {
13
13
"php" : " ^8.0" ,
14
- "illuminate/console" : " ^9.0 " ,
15
- "illuminate/filesystem" : " ^9.0 " ,
16
- "illuminate/support" : " ^9.0 " ,
17
- "illuminate/validation" : " ^9.0 "
14
+ "illuminate/console" : " ^9.21 " ,
15
+ "illuminate/filesystem" : " ^9.21 " ,
16
+ "illuminate/support" : " ^9.21 " ,
17
+ "illuminate/validation" : " ^9.21 "
18
18
},
19
19
"require-dev" : {
20
20
"orchestra/testbench" : " ^7.0"
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ public function handle()
64
64
$ this ->exportBackend ();
65
65
}
66
66
67
- $ this ->info ('Authentication scaffolding generated successfully. ' );
67
+ $ this ->components -> info ('Authentication scaffolding generated successfully. ' );
68
68
}
69
69
70
70
/**
@@ -92,7 +92,7 @@ protected function exportViews()
92
92
{
93
93
foreach ($ this ->views as $ key => $ value ) {
94
94
if (file_exists ($ view = $ this ->getViewPath ($ value )) && ! $ this ->option ('force ' )) {
95
- if (! $ this ->confirm ("The [ { $ value} ] view already exists. Do you want to replace it? " )) {
95
+ if (! $ this ->components -> confirm ("The [ $ value] view already exists. Do you want to replace it? " )) {
96
96
continue ;
97
97
}
98
98
}
@@ -116,7 +116,7 @@ protected function exportBackend()
116
116
$ controller = app_path ('Http/Controllers/HomeController.php ' );
117
117
118
118
if (file_exists ($ controller ) && ! $ this ->option ('force ' )) {
119
- if ($ this ->confirm ("The [HomeController.php] file already exists. Do you want to replace it? " )) {
119
+ if ($ this ->components -> confirm ("The [HomeController.php] file already exists. Do you want to replace it? " )) {
120
120
file_put_contents ($ controller , $ this ->compileControllerStub ());
121
121
}
122
122
} else {
Original file line number Diff line number Diff line change @@ -44,6 +44,6 @@ public function handle()
44
44
);
45
45
});
46
46
47
- $ this ->info ('Authentication scaffolding generated successfully. ' );
47
+ $ this ->components -> info ('Authentication scaffolding generated successfully. ' );
48
48
}
49
49
}
Original file line number Diff line number Diff line change @@ -57,8 +57,8 @@ protected function bootstrap()
57
57
{
58
58
Presets \Bootstrap::install ();
59
59
60
- $ this ->info ('Bootstrap scaffolding installed successfully. ' );
61
- $ this ->comment ('Please run " npm install && npm run dev" to compile your fresh scaffolding. ' );
60
+ $ this ->components -> info ('Bootstrap scaffolding installed successfully. ' );
61
+ $ this ->components -> warn ('Please run [ npm install && npm run dev] to compile your fresh scaffolding. ' );
62
62
}
63
63
64
64
/**
@@ -71,8 +71,8 @@ protected function vue()
71
71
Presets \Bootstrap::install ();
72
72
Presets \Vue::install ();
73
73
74
- $ this ->info ('Vue scaffolding installed successfully. ' );
75
- $ this ->comment ('Please run " npm install && npm run dev" to compile your fresh scaffolding. ' );
74
+ $ this ->components -> info ('Vue scaffolding installed successfully. ' );
75
+ $ this ->components -> warn ('Please run [ npm install && npm run dev] to compile your fresh scaffolding. ' );
76
76
}
77
77
78
78
/**
@@ -85,7 +85,7 @@ protected function react()
85
85
Presets \Bootstrap::install ();
86
86
Presets \React::install ();
87
87
88
- $ this ->info ('React scaffolding installed successfully. ' );
89
- $ this ->comment ('Please run " npm install && npm run dev" to compile your fresh scaffolding. ' );
88
+ $ this ->components -> info ('React scaffolding installed successfully. ' );
89
+ $ this ->components -> warn ('Please run [ npm install && npm run dev] to compile your fresh scaffolding. ' );
90
90
}
91
91
}
You can’t perform that action at this time.
0 commit comments