summaryrefslogtreecommitdiffstats
path: root/php-JsonSchema-php-lt-5-4-0-compat.patch
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2014-08-31 07:57:50 +0200
committerRemi Collet <fedora@famillecollet.com>2014-08-31 07:57:50 +0200
commitbf3a1a14dad935b383eceb1785b9ec071006439d (patch)
tree60b0cc52ffb35a73c7a26d0c573ec8b385a722d8 /php-JsonSchema-php-lt-5-4-0-compat.patch
parent52a9193fbff49f8fc101cfe8da379a1d6c448780 (diff)
php-JsonSchema: sync with rawhide
Diffstat (limited to 'php-JsonSchema-php-lt-5-4-0-compat.patch')
-rw-r--r--php-JsonSchema-php-lt-5-4-0-compat.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/php-JsonSchema-php-lt-5-4-0-compat.patch b/php-JsonSchema-php-lt-5-4-0-compat.patch
new file mode 100644
index 0000000..a63c44e
--- /dev/null
+++ b/php-JsonSchema-php-lt-5-4-0-compat.patch
@@ -0,0 +1,23 @@
+From 3973764636b93f1b94ea6842bdf2e780b2a59822 Mon Sep 17 00:00:00 2001
+From: Shawn Iwinski <siwinski@redhat.com>
+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();
+ }
+