Skip to content

Commit 68a3ea6

Browse files
committed
feat: add support for ansi install
1 parent fd113bd commit 68a3ea6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Sprout/Process/Composer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public function hasDependency($package): bool
7777
public function install($package = null, $callback = null): Process
7878
{
7979
$installCommand = $this->global ? 'global require' : 'require';
80-
$process = new Process($package ? "composer $installCommand $package" : "composer install");
80+
$process = new Process($package ? "composer $installCommand $package --ansi" : "composer install --ansi");
8181
$process->run($callback);
8282

8383
return $process;

0 commit comments

Comments
 (0)