コード例 #1
0
ファイル: Admin.php プロジェクト: eusonlito/web-deploy
 private function git()
 {
     return new Repository\Git(Route::getBasePath());
 }
コード例 #2
0
ファイル: Admin.php プロジェクト: eusonlito/web-deploy
 protected function composerInstall()
 {
     return (new Repository\Composer(Route::getBasePath(), true))->install()->getShellAndLog();
 }
コード例 #3
0
ファイル: Shell.php プロジェクト: eusonlito/web-deploy
 private function setUp($path = null)
 {
     Directory::create(Route::getStoragePath('/logs'));
     $this->cd($path ?: config('project')['path'] ?: Route::getBasePath());
 }