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