From e2b9ce080782c777002d061f1064c85b6eddfd86 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 15 Jun 2015 08:11:24 +0200 Subject: php-JsonSchema: 1.4.2 --- php-JsonSchema-php-lt-5-4-0-compat.patch | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 php-JsonSchema-php-lt-5-4-0-compat.patch (limited to 'php-JsonSchema-php-lt-5-4-0-compat.patch') diff --git a/php-JsonSchema-php-lt-5-4-0-compat.patch b/php-JsonSchema-php-lt-5-4-0-compat.patch deleted file mode 100644 index a63c44e..0000000 --- a/php-JsonSchema-php-lt-5-4-0-compat.patch +++ /dev/null @@ -1,23 +0,0 @@ -From 3973764636b93f1b94ea6842bdf2e780b2a59822 Mon Sep 17 00:00:00 2001 -From: Shawn Iwinski -Date: Fri, 29 Aug 2014 22:41:25 -0400 -Subject: [PATCH] PHP < 5.4.0 compatibility for "--dump-schema" - ---- - bin/validate-json | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/bin/validate-json b/bin/validate-json -index 2f2fe44..8831a6e 100755 ---- a/bin/validate-json -+++ b/bin/validate-json -@@ -218,7 +218,8 @@ $refResolver = new JsonSchema\RefResolver($retriever); - $refResolver->resolve($schema, $urlSchema); - - if (isset($arOptions['--dump-schema'])) { -- echo json_encode($schema, JSON_PRETTY_PRINT) . "\n"; -+ $options = version_compare(PHP_VERSION, '5.4.0', '>=') ? JSON_PRETTY_PRINT : 0; -+ echo json_encode($schema, $options) . "\n"; - exit(); - } - -- cgit