Subject: | JIRA::REST actually requires JSON 2.23, not "0" |
JIRA::REST calls JSON->new->utf8, which exists only in JSON 2.23 and newer.
Patch:
--- ../Makefile.PL 2017-07-17 23:51:43.000000000 -0400
+++ ./Makefile.PL 2017-07-17 23:49:55.000000000 -0400
@@ -21,7 +21,7 @@
"Config::Identity" => "0.0019",
"HTML::TreeBuilder" => 0,
"HTTP::Status" => 0,
- "JSON" => 0,
+ "JSON" => "2.23",
"MIME::Base64" => 0,
"Net::Netrc" => 0,
"REST::Client" => 0,