Fix URL handling for PEAR repositories
parent
4fdc602037
commit
8a127ed131
|
@ -24,6 +24,9 @@ class PearRepository extends ArrayRepository
|
||||||
|
|
||||||
public function __construct(array $config)
|
public function __construct(array $config)
|
||||||
{
|
{
|
||||||
|
if (!preg_match('{^https?://}', $config['url'])) {
|
||||||
|
$config['url'] = 'http://'.$config['url'];
|
||||||
|
}
|
||||||
if (!filter_var($config['url'], FILTER_VALIDATE_URL)) {
|
if (!filter_var($config['url'], FILTER_VALIDATE_URL)) {
|
||||||
throw new \UnexpectedValueException('Invalid url given for PEAR repository: '.$config['url']);
|
throw new \UnexpectedValueException('Invalid url given for PEAR repository: '.$config['url']);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue