Add warning when loading an https repo if openssl is disabled, refs #930
parent
8bf03aea07
commit
2d41774bcc
|
@ -82,6 +82,10 @@ class ComposerRepository extends ArrayRepository implements NotifiableRepository
|
||||||
{
|
{
|
||||||
parent::initialize();
|
parent::initialize();
|
||||||
|
|
||||||
|
if (!extension_loaded('openssl') && 'https' === substr($this->url, 0, 5)) {
|
||||||
|
throw new \RuntimeException('You must enable the openssl extension in your php.ini to load information from '.$this->url);
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$json = new JsonFile($this->url.'/packages.json', new RemoteFilesystem($this->io));
|
$json = new JsonFile($this->url.'/packages.json', new RemoteFilesystem($this->io));
|
||||||
$data = $json->read();
|
$data = $json->read();
|
||||||
|
|
Loading…
Reference in New Issue