Преглед на файлове

Fix constant usage to be compatible with PHP 5.3

Raphaël Aurières преди 6 години
родител
ревизия
a8f27bf097
променени са 1 файла, в които са добавени 6 реда и са изтрити 2 реда
  1. 6 2
      src/Composer/Json/JsonFile.php

+ 6 - 2
src/Composer/Json/JsonFile.php

@@ -34,7 +34,7 @@ class JsonFile
     const JSON_PRETTY_PRINT = 128;
     const JSON_UNESCAPED_UNICODE = 256;
 
-    const COMPOSER_SCHEMA_PATH = __DIR__ . '/../../../res/composer-schema.json';
+    const COMPOSER_SCHEMA_PATH = '/../../../res/composer-schema.json';
 
     private $path;
     private $rfs;
@@ -150,7 +150,7 @@ class JsonFile
      * @throws JsonValidationException
      * @return bool                    true on success
      */
-    public function validateSchema($schema = self::STRICT_SCHEMA, $schemaFile = self::COMPOSER_SCHEMA_PATH)
+    public function validateSchema($schema = self::STRICT_SCHEMA, $schemaFile = null)
     {
         $content = file_get_contents($this->path);
         $data = json_decode($content);
@@ -159,6 +159,10 @@ class JsonFile
             self::validateSyntax($content, $this->path);
         }
 
+        if (null === $schemaFile) {
+            $schemaFile = __DIR__ . self::COMPOSER_SCHEMA_PATH;
+        }
+
         // Prepend with file:// only when not using a special schema already (e.g. in the phar)
         if (false === strpos($schemaFile, '://')) {
             $schemaFile = 'file://' . $schemaFile;