Catalyst::Action::Serialize::View uses the calculated $stash_key; amended C::C::REST...
[catagits/Catalyst-Action-REST.git] / Makefile.PL
CommitLineData
398c5a1b 1use inc::Module::Install;
7328f0ab 2
3perl_version '5.8.1';
4
5name 'Catalyst-Action-REST';
c7cecf65 6all_from 'lib/Catalyst/Action/REST.pm';
7328f0ab 7
49c33999 8requires('Catalyst::Runtime' => '5.7001');
33e5de96 9requires('Params::Validate' => '0.76');
10requires('YAML::Syck' => '0.67');
11requires('Module::Pluggable::Object' => undef);
12requires('LWP::UserAgent' => '2.033');
13requires('Data::Serializer' => '0.36');
14requires('Class::Inspector' => '1.13');
8f00a41b 15requires('URI::Find' => undef);
def65dcc 16requires('MRO::Compat' => '0.10');
8f00a41b 17
5ebf67a4 18test_requires 'Moose';
19
ebba5325 20feature 'JSON (application/json) support',
21 -default => 0,
2f7533ed 22 'JSON' => '2.12';
23 'JSON::XS' => '2.2222';
ebba5325 24
8f00a41b 25feature 'Data::Taxi (text/x-data-taxi) support',
26 -default => 0,
27 'Data::Taxi' => undef;
28
29feature 'Config::General (text/x-config-general) support',
30 -default => 0,
31 'Config::General' => undef;
32
33feature 'PHP::Serialization (text/x-php-serialization) support',
34 -default => 0,
35 'PHP::Serialization' => undef;
36
37feature 'FreezeThaw (application/x-freezethaw) support',
38 -default => 0,
39 'FreezeThaw' => undef;
40
41feature 'XML::Simple (text/xml) support',
42 -default => 0,
43 'XML::Simple' => undef;
33e5de96 44
45auto_include;
46auto_install;
7328f0ab 47
09e6374a 48repository 'http://github.com/bobtfish/catalyst-action-rest';
38c3a9b2 49
7328f0ab 50WriteAll;
51