We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47bc299 commit c945210Copy full SHA for c945210
composer.json
@@ -2,7 +2,7 @@
2
"name": "leafs/cli",
3
"description": "A simple command line tool for installing and interacting with your leaf apps",
4
"homepage": "https://cli.leafphp.dev",
5
- "version": "v4.0",
+ "version": "v4.0.1",
6
"keywords": [
7
"leaf",
8
"php",
src/InstallCommand.php
@@ -24,7 +24,7 @@ protected function handle(): int
24
}
25
26
$package = str_replace('@', ':', $package);
27
- $package = $this->option('dev') ? "$package --dev" : $package;
+ $package = ($this->option('dev') === "true") ? "$package --dev" : $package;
28
29
$parsedPackages[] = $package;
30
0 commit comments