File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -584,8 +584,8 @@ private function disableRepoByName(string $name): void
584
584
*/
585
585
public function prohibitUrlByConfig (string $ url , ?IOInterface $ io = null , array $ repoOptions = []): void
586
586
{
587
- // Return right away if the URL is malformed or custom (see issue #5173)
588
- if (false === filter_var ($ url , FILTER_VALIDATE_URL )) {
587
+ // Return right away if the URL is malformed or custom (see issue #5173), but only for non-HTTP(S) URLs
588
+ if (false === filter_var ($ url , FILTER_VALIDATE_URL ) && !Preg:: isMatch ( ' {^https?://} ' , $ url ) ) {
589
589
return ;
590
590
}
591
591
Original file line number Diff line number Diff line change @@ -294,6 +294,7 @@ public static function prohibitedUrlProvider(): array
294
294
'http://packagist.org ' ,
295
295
'http://10.1.0.1/satis ' ,
296
296
'http://127.0.0.1/satis ' ,
297
+ 'http://💛@example.org ' ,
297
298
'svn://localhost/trunk ' ,
298
299
'svn://will.not.resolve/trunk ' ,
299
300
'svn://192.168.0.1/trunk ' ,
You can’t perform that action at this time.
0 commit comments