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