X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=8012cd2baf2a2b3702015dac4c5f71de0508a80e;hb=5ebf67a4e3bdd642e22dfad78eca007941a52747;hp=e1048f5c078febc5d23fe4c4fed95da85ea145e9;hpb=8f00a41bd7efb75d302d0a333e0eb5bc7d75c931;p=catagits%2FCatalyst-Action-REST.git diff --git a/Makefile.PL b/Makefile.PL index e1048f5..8012cd2 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -5,7 +5,7 @@ perl_version '5.8.1'; name 'Catalyst-Action-REST'; all_from 'lib/Catalyst/Action/REST.pm'; -requires('Catalyst' => '5.7001'); +requires('Catalyst::Runtime' => '5.7001'); requires('Params::Validate' => '0.76'); requires('YAML::Syck' => '0.67'); requires('Module::Pluggable::Object' => undef); @@ -13,10 +13,14 @@ requires('LWP::UserAgent' => '2.033'); requires('Data::Serializer' => '0.36'); requires('Class::Inspector' => '1.13'); requires('URI::Find' => undef); +requires('MRO::Compat' => '0.10'); -feature 'Data::Denter (text/x-data-denter) support', - -default => 0, - 'Data::Denter' => undef; +test_requires 'Moose'; + +feature 'JSON (application/json) support', + -default => 0, + 'JSON' => '2.12'; + 'JSON::XS' => '2.2222'; feature 'Data::Taxi (text/x-data-taxi) support', -default => 0, @@ -41,5 +45,7 @@ feature 'XML::Simple (text/xml) support', auto_include; auto_install; +repository 'http://github.com/bobtfish/catalyst-action-rest'; + WriteAll;