Merge branch '2.2' into 2.3
commit
cecdc0cbd1
|
@ -402,7 +402,15 @@ EOT
|
|||
throw new \InvalidArgumentException('Invalid stability provided ('.$stability.'), must be one of: '.implode(', ', array_keys(BasePackage::$stabilities)));
|
||||
}
|
||||
|
||||
$composer = Factory::create($io, $config->all(), $disablePlugins);
|
||||
$composerJson = array_merge(
|
||||
// prevent version guessing from happening
|
||||
array('version' => '1.0.0'),
|
||||
$config->all(),
|
||||
// ensure the vendor dir and its plugins does not get loaded if CWD/vendor has plugins in it
|
||||
array('config' => array('vendor-dir' => Platform::getDevNull()))
|
||||
);
|
||||
$factory = new Factory;
|
||||
$composer = $factory->createComposer($io, $composerJson, $disablePlugins, Platform::getDevNull(), true, $disableScripts);
|
||||
$config = $composer->getConfig();
|
||||
$rm = $composer->getRepositoryManager();
|
||||
|
||||
|
|
Loading…
Reference in New Issue