1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php namespace Laravel\CLI\Tasks\Bundle\Providers;
- use Laravel\Request;
- class Github extends Provider {
- /**
- * Install the given bundle into the application.
- *
- * @param string $bundle
- * @return void
- */
- public function install($bundle)
- {
- $method = (Request::server('cli.zip')) ? 'zipball' : 'submodule';
- $this->$method($bundle);
- }
- /**
- * Install a Github hosted bundle from Zip.
- *
- * @param string $bundle
- * @return void
- */
- protected function zipball($bundle)
- {
- $zip = "https://github.com/{$bundle['location']}/zipball/master";
- parent::zipball($zip, true);
- }
- /**
- * Install a Github hosted bundle using submodules.
- *
- * @param string $bundle
- * @return void
- */
- protected function submodule($bundle)
- {
- $repository = "git@github.com:{$bundle['location']}.git";
- $this->directory($bundle);
- // We need to just extract the basename of the bundle path when
- // adding the submodule. Of course, we can't add a submodule to
- // a location outside of the Git repository, so we don't need
- // the full bundle path.
- $root = basename(path('bundle')).'/';
- passthru('git submodule add '.$repository.' '.$root.$this->path($bundle));
- passthru('git submodule update');
- }
- }
|