Dink to s/: Private/: Action/
[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
ebba5325 18feature 'JSON (application/json) support',
19 -default => 0,
2f7533ed 20 'JSON' => '2.12';
21 'JSON::XS' => '2.2222';
ebba5325 22
8f00a41b 23feature 'Data::Taxi (text/x-data-taxi) support',
24 -default => 0,
25 'Data::Taxi' => undef;
26
27feature 'Config::General (text/x-config-general) support',
28 -default => 0,
29 'Config::General' => undef;
30
31feature 'PHP::Serialization (text/x-php-serialization) support',
32 -default => 0,
33 'PHP::Serialization' => undef;
34
35feature 'FreezeThaw (application/x-freezethaw) support',
36 -default => 0,
37 'FreezeThaw' => undef;
38
39feature 'XML::Simple (text/xml) support',
40 -default => 0,
41 'XML::Simple' => undef;
33e5de96 42
43auto_include;
44auto_install;
7328f0ab 45
09e6374a 46repository 'http://github.com/bobtfish/catalyst-action-rest';
38c3a9b2 47
7328f0ab 48WriteAll;
49