diff --git a/src/Composer/Installer.php b/src/Composer/Installer.php index ef44d2109..3ded1c66a 100644 --- a/src/Composer/Installer.php +++ b/src/Composer/Installer.php @@ -624,10 +624,10 @@ class Installer throw new \LogicException('isUpdateable should only be called when a whitelist is present'); } - foreach($this->updateWhitelist as $whiteListedPattern => $void) { - $cleanedWhiteListedPattern = str_replace('\*', '.*', preg_quote($whiteListedPattern)); + foreach ($this->updateWhitelist as $whiteListedPattern => $void) { + $cleanedWhiteListedPattern = str_replace('\\*', '.*', preg_quote($whiteListedPattern)); - if(preg_match("#^".$cleanedWhiteListedPattern."$#i", $package->getName())) { + if (preg_match("#^".$cleanedWhiteListedPattern."$#i", $package->getName())) { return true; } }