1
0
Fork 0

Merge branch '2.6'

pull/11829/head
Jordi Boggiano 2024-01-26 17:11:27 +01:00
commit 2ec8feb825
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC
1 changed files with 2 additions and 2 deletions

View File

@ -350,8 +350,8 @@ class Factory
// load auth configs into the IO instance
$io->loadConfiguration($config);
// load existing Composer\InstalledVersions instance if available
if (!class_exists('Composer\InstalledVersions', false) && file_exists($installedVersionsPath = $config->get('vendor-dir').'/composer/InstalledVersions.php')) {
// load existing Composer\InstalledVersions instance if available and scripts/plugins are allowed, as they might need it
if (!$disablePlugins && !$disableScripts && !class_exists('Composer\InstalledVersions', false) && file_exists($installedVersionsPath = $config->get('vendor-dir').'/composer/InstalledVersions.php')) {
include $installedVersionsPath;
}
}