Skip to content

Commit

Permalink
Fix allow-plugins:false handling, fixes #10530
Browse files Browse the repository at this point in the history
  • Loading branch information
Seldaek committed Feb 15, 2022
1 parent 23b0a38 commit eee8816
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Composer/Plugin/PluginManager.php
Expand Up @@ -656,7 +656,7 @@ private function parseAllowedPlugins($allowPluginsConfig)
}

if (false === $allowPluginsConfig) {
return array('{^$}D' => false);
return array('{}' => false);
}

$rules = array();
Expand Down

0 comments on commit eee8816

Please sign in to comment.