|
@@ -36,6 +36,10 @@ class GitDownloader implements DownloaderInterface
|
|
throw new \InvalidArgumentException('The given package is missing reference information');
|
|
throw new \InvalidArgumentException('The given package is missing reference information');
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ if (!extension_loaded('openssl')) {
|
|
|
|
+ throw new \RuntimeException('You must enable the openssl extension to clone git repositories');
|
|
|
|
+ }
|
|
|
|
+
|
|
$url = escapeshellarg($package->getSourceUrl());
|
|
$url = escapeshellarg($package->getSourceUrl());
|
|
$ref = escapeshellarg($package->getSourceReference());
|
|
$ref = escapeshellarg($package->getSourceReference());
|
|
system(sprintf('git clone %s %s && cd %2$s && git reset --hard %s', $url, $path, $ref));
|
|
system(sprintf('git clone %s %s && cd %2$s && git reset --hard %s', $url, $path, $ref));
|