caihongxingqiu 5 vuotta sitten
vanhempi
commit
9ea8c3f369
1 muutettua tiedostoa jossa 2 lisäystä ja 0 poistoa
  1. 2 0
      .rocketeer/strategies.php

+ 2 - 0
.rocketeer/strategies.php

@@ -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();
         },
     ],