Require Moose for tests
[catagits/Catalyst-Action-Serialize-Data-Serializer.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 test_requires 'Moose';
19
20 feature 'JSON (application/json) support',
21     -default   => 0,
22     'JSON'     => '2.12';
23     'JSON::XS' => '2.2222';
24
25 feature 'Data::Taxi (text/x-data-taxi) support',
26     -default => 0,
27     'Data::Taxi' => undef;
28
29 feature 'Config::General (text/x-config-general) support',
30     -default => 0,
31     'Config::General' => undef;
32
33 feature 'PHP::Serialization (text/x-php-serialization) support',
34     -default => 0,
35     'PHP::Serialization' => undef;
36
37 feature 'FreezeThaw (application/x-freezethaw) support',
38     -default => 0,
39     'FreezeThaw' => undef;
40
41 feature 'XML::Simple (text/xml) support',
42     -default => 0,
43     'XML::Simple' => undef;
44
45 auto_include;
46 auto_install;
47
48 repository 'http://github.com/bobtfish/catalyst-action-rest';
49
50 WriteAll;
51