From: intrigeri <intrigeri@boum.org>
Date: Sat, 7 Jun 2014 21:54:49 +0000
Subject: Replace JSON::MaybeXS with JSON::XS.

JSON::MaybeXS is a very tiny wrapper that loads Cpanel::JSON::XS, then JSON::XS,
then JSON::PP in order, and provides the two main functions from the
loaded module.

JSON::XS can safely be used directly, and since among the three ones, it is the
only one that's available in Wheezy, let's do that to save some
backporting overhead.
---
 META.yml                           | 2 +-
 Makefile.PL                        | 4 ++--
 dist.ini                           | 2 +-
 lib/Test/BDD/Cucumber/I18N/Data.pm | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/META.yml b/META.yml
index ce9e430..821cf6a 100644
--- a/META.yml
+++ b/META.yml
@@ -19,7 +19,7 @@ requires:
   FindBin::libs: '0'
   Getopt::Long: '0'
   IO::Scalar: '0'
-  JSON::MaybeXS: '0'
+  JSON::XS: '0'
   List::MoreUtils: '0'
   List::Util: '0'
   Module::Runtime: '0'
diff --git a/Makefile.PL b/Makefile.PL
index d163f61..5fd381e 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -29,7 +29,7 @@ my %WriteMakefileArgs = (
     "FindBin::libs" => 0,
     "Getopt::Long" => 0,
     "IO::Scalar" => 0,
-    "JSON::MaybeXS" => 0,
+    "JSON::XS" => 0,
     "List::MoreUtils" => 0,
     "List::Util" => 0,
     "Module::Runtime" => 0,
@@ -58,7 +58,7 @@ my %FallbackPrereqs = (
   "FindBin::libs" => 0,
   "Getopt::Long" => 0,
   "IO::Scalar" => 0,
-  "JSON::MaybeXS" => 0,
+  "JSON::XS" => 0,
   "List::MoreUtils" => 0,
   "List::Util" => 0,
   "Module::Runtime" => 0,
diff --git a/dist.ini b/dist.ini
index a1344be..a107a9a 100644
--- a/dist.ini
+++ b/dist.ini
@@ -27,7 +27,7 @@ File::Slurp = 0
 FindBin::libs = 0
 Getopt::Long = 0
 IO::Scalar = 0
-JSON::MaybeXS = 0
+JSON::XS = 0
 Module::Runtime = 0
 Moose = 0
 Number::Range = 0
diff --git a/lib/Test/BDD/Cucumber/I18N/Data.pm b/lib/Test/BDD/Cucumber/I18N/Data.pm
index 6732314..d598c56 100644
--- a/lib/Test/BDD/Cucumber/I18N/Data.pm
+++ b/lib/Test/BDD/Cucumber/I18N/Data.pm
@@ -3,7 +3,7 @@ $Test::BDD::Cucumber::I18N::Data::VERSION = '0.26';
 use strict;
 use warnings;
 
-use JSON::MaybeXS qw/decode_json/;
+use JSON::XS qw/decode_json/;
 
 =encoding utf8
 
