Skip to content

Commit f27bd38

Browse files
committed
chore: update install command
1 parent a133ea0 commit f27bd38

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/InstallCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ protected function installDependencies($output)
4848

4949
$composer = Utils\Core::findComposer();
5050
$process = Process::fromShellCommandline(
51-
file_exists($composerLockPath) ? "$composer install" : "$composer update",
51+
file_exists($composerLockPath) ? "$composer install --ansi" : "$composer update --ansi",
5252
null,
5353
null,
5454
null,
@@ -83,7 +83,7 @@ protected function install($packages, $input, $output)
8383
$output->writeln("<info>Installing $package...</info>");
8484
$composer = Utils\Core::findComposer();
8585
$process = Process::fromShellCommandline(
86-
"$composer require $package" . ($input->getOption('dev') ? ' --dev' : ''),
86+
"$composer require $package" . ($input->getOption('dev') ? ' --dev' : '') . ' --ansi',
8787
null,
8888
null,
8989
null,

0 commit comments

Comments
 (0)