|
@@ -40,9 +40,11 @@ return [
|
|
|
|
|
|
'composer' => [
|
|
|
'install' => function (Composer $composer, $task) {
|
|
|
+ echo 'installing...';
|
|
|
return $composer->install([], ['--no-interaction' => null, '--prefer-dist' => null]);
|
|
|
},
|
|
|
'update' => function (Composer $composer) {
|
|
|
+ echo 'updating...';
|
|
|
return $composer->update();
|
|
|
},
|
|
|
],
|