File tree Expand file tree Collapse file tree 4 files changed +12
-6
lines changed
workbench/resources/views Expand file tree Collapse file tree 4 files changed +12
-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 9
9
use Symfony \Component \Console \Attribute \AsCommand ;
10
10
11
11
use function Illuminate \Filesystem \join_paths ;
12
+ use function Laravel \Prompts \confirm ;
12
13
use function Laravel \Prompts \select ;
13
14
use function Orchestra \Testbench \package_path ;
14
15
@@ -32,10 +33,14 @@ class InstallCommand extends Command
32
33
public function handle (Filesystem $ filesystem )
33
34
{
34
35
if (! $ this ->option ('skip-devtool ' )) {
35
- $ this ->call ('workbench:devtool ' , [
36
- '--force ' => $ this ->option ('force ' ),
37
- '--skip-install ' => true ,
38
- ]);
36
+ $ devtool = confirm ('Install Workbench DevTool? ' , true );
37
+
38
+ if ($ devtool === true ) {
39
+ $ this ->call ('workbench:devtool ' , [
40
+ '--force ' => $ this ->option ('force ' ),
41
+ '--skip-install ' => true ,
42
+ ]);
43
+ }
39
44
}
40
45
41
46
$ workingPath = package_path ();
You can’t perform that action at this time.
0 commit comments