Fix missing validation of local auth file before loading it
parent
b8b84c2c35
commit
732bdbde4b
|
@ -331,6 +331,7 @@ class Factory
|
||||||
$localAuthFile = new JsonFile(dirname(realpath($composerFile)) . '/auth.json', null, $io);
|
$localAuthFile = new JsonFile(dirname(realpath($composerFile)) . '/auth.json', null, $io);
|
||||||
if ($localAuthFile->exists()) {
|
if ($localAuthFile->exists()) {
|
||||||
$io->writeError('Loading config file ' . $localAuthFile->getPath(), true, IOInterface::DEBUG);
|
$io->writeError('Loading config file ' . $localAuthFile->getPath(), true, IOInterface::DEBUG);
|
||||||
|
self::validateJsonSchema($io, $localAuthFile, JsonFile::AUTH_SCHEMA);
|
||||||
$config->merge(array('config' => $localAuthFile->read()), $localAuthFile->getPath());
|
$config->merge(array('config' => $localAuthFile->read()), $localAuthFile->getPath());
|
||||||
$config->setAuthConfigSource(new JsonConfigSource($localAuthFile, true));
|
$config->setAuthConfigSource(new JsonConfigSource($localAuthFile, true));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue