소스 검색

test deploy

caihongxingqiu 5 년 전
부모
커밋
9ea8c3f369
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  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();
         },
     ],