Browse Source

Allow JsonLoader to load by file name

Jordi Boggiano 13 years ago
parent
commit
f572bbb0bf
1 changed files with 2 additions and 0 deletions
  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);
         }