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 fd113bd commit 68a3ea6Copy full SHA for 68a3ea6
1 file changed
src/Sprout/Process/Composer.php
@@ -77,7 +77,7 @@ public function hasDependency($package): bool
77
public function install($package = null, $callback = null): Process
78
{
79
$installCommand = $this->global ? 'global require' : 'require';
80
- $process = new Process($package ? "composer $installCommand $package" : "composer install");
+ $process = new Process($package ? "composer $installCommand $package --ansi" : "composer install --ansi");
81
$process->run($callback);
82
83
return $process;
0 commit comments