Skip to content

Commit

Permalink
Review: Lower composer (PHP dependency manager) verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
nuxwin committed May 26, 2019
1 parent 5b35ddf commit 05c4f1c
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions engine/PerlLib/iMSCP/Composer.pm
Original file line number Diff line number Diff line change
Expand Up @@ -304,8 +304,7 @@ sub install
'--no-interaction',
'--no-suggest',
( $nodev ? '--no-dev' : () ),
( $noautoloader ? '--no-autoloader' : () ),
'-vv',
( $noautoloader ? '--no-autoloader' : () )
),
$self->{'_stdout'},
$self->{'_stderr'}
Expand Down Expand Up @@ -349,7 +348,6 @@ sub update
'--no-suggest',
( $nodev ? '--no-dev' : () ),
( $noautoloader ? '--no-autoloader' : () ),
'-vv',
@packages
),
$self->{'_stdout'},
Expand Down Expand Up @@ -377,8 +375,7 @@ sub clearCache
$self->{'composer_phar'}, 'clear-cache',
"--working-dir=$self->{'composer_working_dir'}",
'--no-interaction',
'--no-ansi',
'-vv'
'--no-ansi'
),
$self->{'_stdout'},
$self->{'_stderr'}
Expand Down

0 comments on commit 05c4f1c

Please sign in to comment.