Kaynağa Gözat

Allow JsonLoader to load by file name

Jordi Boggiano 13 yıl önce
ebeveyn
işleme
f572bbb0bf
1 değiştirilmiş dosya ile 2 ekleme ve 0 silme
  1. 2 0
      src/Composer/Package/Loader/JsonLoader.php

+ 2 - 0
src/Composer/Package/Loader/JsonLoader.php

@@ -23,6 +23,8 @@ class JsonLoader extends ArrayLoader
     {
         if ($json instanceof JsonFile) {
             $config = $json->read();
+        } elseif (file_exists($json)) {
+            $config = JsonFile::parseJson(file_get_contents($json));
         } elseif (is_string($json)) {
             $config = JsonFile::parseJson($json);
         }