1
0
Fork 0

Lowercase ext- package names, refs #9093

pull/9122/head
Jordi Boggiano 2020-08-13 15:31:57 +02:00
parent 4d20e6f5d6
commit c845d66818
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC
1 changed files with 1 additions and 1 deletions

View File

@ -560,7 +560,7 @@ class PlatformRepository extends ArrayRepository
*/
private function buildPackageName($name)
{
return 'ext-' . str_replace(' ', '-', $name);
return 'ext-' . str_replace(' ', '-', strtolower($name));
}
/**