浏览代码

Make installer type case insensitive

Jordi Boggiano 13 年之前
父节点
当前提交
8aaac35ca1
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      src/Composer/Installer/InstallationManager.php

+ 2 - 0
src/Composer/Installer/InstallationManager.php

@@ -51,6 +51,8 @@ class InstallationManager
      */
     public function getInstaller($type)
     {
+        $type = strtolower($type);
+
         if (isset($this->cache[$type])) {
             return $this->cache[$type];
         }