Fix constant usage to be compatible with PHP 5.3
parent
3c01faf0e2
commit
a8f27bf097
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue