1: <?php namespace Laravel\CLI\Tasks\Bundle\Providers; use Laravel\Request;
2:
3: class Github extends Provider {
4:
5: /**
6: * Install the given bundle into the application.
7: *
8: * @param string $bundle
9: * @param string $path
10: * @return void
11: */
12: public function install($bundle, $path)
13: {
14: $url = "http://github.com/{$bundle['location']}/zipball/master";
15:
16: parent::zipball($url, $bundle, $path);
17: }
18:
19: }