File tree Expand file tree Collapse file tree 4 files changed +11
-6
lines changed
workbench/resources/views Expand file tree Collapse file tree 4 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ This changelog references the relevant changes (bug and security fixes) done to
4
4
5
5
## 1.4.0
6
6
7
- Released: 2024-03-12
7
+ Released: 2024-03-13
8
8
9
9
### Changes
10
10
Original file line number Diff line number Diff line change 59
59
"prepare" : " @php vendor/bin/testbench package:discover --ansi" ,
60
60
"build" : " @php vendor/bin/testbench workbench:build --ansi" ,
61
61
"serve" : [
62
+ " Composer\\ Config::disableProcessTimeout" ,
62
63
" @build" ,
63
64
" @php vendor/bin/testbench serve"
64
65
],
76
77
},
77
78
"prefer-stable" : true ,
78
79
"minimum-stability" : " dev"
79
- }
80
+ }
Original file line number Diff line number Diff line change @@ -30,10 +30,14 @@ class InstallCommand extends Command
30
30
public function handle (Filesystem $ filesystem )
31
31
{
32
32
if (! $ this ->option ('skip-devtool ' )) {
33
- $ this ->call ('workbench:devtool ' , [
34
- '--force ' => $ this ->option ('force ' ),
35
- '--skip-install ' => true ,
36
- ]);
33
+ $ devtool = $ this ->components ->confirm ('Install Workbench DevTool? ' , true );
34
+
35
+ if ($ devtool === true ) {
36
+ $ this ->call ('workbench:devtool ' , [
37
+ '--force ' => $ this ->option ('force ' ),
38
+ '--skip-install ' => true ,
39
+ ]);
40
+ }
37
41
}
38
42
39
43
$ workingPath = package_path ();
You can’t perform that action at this time.
0 commit comments