Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 86c20b0

Browse files
committed
Merge branch '1.x' into 7.x
Signed-off-by: Mior Muhammad Zaki <[email protected]>
2 parents b57de1d + 5f51d39 commit 86c20b0

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

CHANGELOG-1.x.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This changelog references the relevant changes (bug and security fixes) done to
44

55
## 1.4.0
66

7-
Released: 2024-03-12
7+
Released: 2024-03-13
88

99
### Changes
1010

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
"prepare": "@php vendor/bin/testbench package:discover --ansi",
6060
"build": "@php vendor/bin/testbench workbench:build --ansi",
6161
"serve": [
62+
"Composer\\Config::disableProcessTimeout",
6263
"@build",
6364
"@php vendor/bin/testbench serve"
6465
],
@@ -76,4 +77,4 @@
7677
},
7778
"prefer-stable": true,
7879
"minimum-stability": "dev"
79-
}
80+
}

src/Console/InstallCommand.php

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,14 @@ class InstallCommand extends Command
3030
public function handle(Filesystem $filesystem)
3131
{
3232
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+
}
3741
}
3842

3943
$workingPath = package_path();

workbench/resources/views/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)