From cc4223e6f9f66cd7c8ba78dc7a8442d1029ab2d2 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Sat, 13 Dec 2014 14:54:34 +0000 Subject: [PATCH] Avoid loading plugins that have had their code wiped from filesystem, fixes #3115, closes #3538 --- src/Composer/Factory.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Composer/Factory.php b/src/Composer/Factory.php index 4f7bfefd8..327709d3f 100644 --- a/src/Composer/Factory.php +++ b/src/Composer/Factory.php @@ -284,13 +284,13 @@ class Factory $pm = $this->createPluginManager($composer, $io, $globalRepository); $composer->setPluginManager($pm); + // purge packages if they have been deleted on the filesystem + $this->purgePackages($rm, $im); + if (!$disablePlugins) { $pm->loadInstalledPlugins(); } - // purge packages if they have been deleted on the filesystem - $this->purgePackages($rm, $im); - // init locker if possible if (isset($composerFile)) { $lockFile = "json" === pathinfo($composerFile, PATHINFO_EXTENSION)