github.php 410 Bytes
Newer Older
1
<?php namespace Laravel\CLI\Tasks\Bundle\Providers; use Laravel\Request;
Taylor Otwell committed
2

3
class Github extends Provider {
4 5 6 7 8

	/**
	 * Install the given bundle into the application.
	 *
	 * @param  string  $bundle
9
	 * @param  string  $path
10 11
	 * @return void
	 */
12
	public function install($bundle, $path)
13
	{
14
		$url = "http://nodeload.github.com/{$bundle['location']}/zipball/master";
15

16
		parent::zipball($url, $bundle, $path);
17 18
	}

19
}