github.php 988 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php namespace Laravel\CLI\Tasks\Bundle\Providers;
  2. class Github implements Provider {
  3. /**
  4. * Install the given bundle into the application.
  5. *
  6. * @param string $bundle
  7. * @return void
  8. */
  9. public function install($bundle)
  10. {
  11. $repository = "git@github.com:{$bundle['location']}.git";
  12. $path = array_get($bundle, 'path', $bundle['name']);
  13. // If the installation target directory doesn't exist, we will create
  14. // it recursively so that we can properly add the Git submodule for
  15. // the bundle when we install.
  16. if ( ! is_dir(path('bundle').$path))
  17. {
  18. mkdir(path('bundle').$path, 0777, true);
  19. }
  20. // We need to just extract the basename of the bundle path when
  21. // adding the submodule. Of course, we can't add a submodule to
  22. // a location outside of the Git repository, so we don't need
  23. // the full bundle path.
  24. $root = basename(path('bundle')).'/';
  25. passthru('git submodule add '.$repository.' '.$root.$path);
  26. passthru('git submodule update');
  27. }
  28. }