581abb1f69759e203760aadb33142d5cfbf3b2a0
[catagits/Task-Catalyst.git] / Makefile.PL
1 use inc::Module::Install 0.87;
2
3 name     'Task-Catalyst';
4 all_from 'lib/Task/Catalyst.pm';
5
6 requires 'Catalyst'        => '5.7007';
7 requires 'Catalyst::Devel' => '1.02';
8
9 feature 'Apache/mod_perl Support',
10   -default                   => 1,
11   'Catalyst::Engine::Apache' => '1.09';
12
13 feature 'FastCGI Support',
14     -default            => 1,
15     'FCGI'              => 0,
16     'FCGI::ProcManager' => 0;
17
18 feature 'PAR Support',
19     -default => 1,
20     'PAR'    => 0;
21
22 feature 'Log4perl Support',
23     -default                  => 1,
24     'Params::Validate'        => 0,
25     'Catalyst::Log::Log4perl' => '0.1';
26
27 feature 'HTML::FormFu Support',
28     -default                         => 1,
29     'Catalyst::Controller::HTML::FormFu' => '0.03';
30
31 feature 'FormBuilder Support',
32     -default                        => 0,
33     'Catalyst::Controller::FormBuilder' => '0.03';
34
35 feature 'Stacktrace Advanced Debugging Support',
36     -default                       => 1,
37     'Catalyst::Plugin::StackTrace' => '0.02';
38
39 feature 'Session Support',
40     -default                                   => 1,
41     'Catalyst::Plugin::Session'                => '0.05',
42     'Catalyst::Plugin::Session::Store::File'   => '0.07',
43     'Catalyst::Plugin::Session::State::Cookie' => '0.02',
44     'Catalyst::Plugin::Session::State::URI'    => '0.02';
45
46 feature 'Authentication/Authorization Support',
47     -default                                            => 1,
48     'Catalyst::Plugin::Authentication'                  => '0.05',
49     'Catalyst::Authentication::Store::DBIx::Class'      => '0.04',
50     'Catalyst::Plugin::Authorization::ACL'              => '0.06',
51     'Catalyst::Plugin::Authorization::Roles'            => '0.03';
52
53 feature 'I18N Support',
54     -default                 => 1,
55     'Catalyst::Plugin::I18N' => '0.05';
56
57 feature 'DBIx::Class Support',
58     -default                        => 1,
59     'Catalyst::Model::DBIC::Schema' => '0.08';
60
61 feature 'Template::Toolkit Support',
62     -default             => 1,
63     'Catalyst::View::TT' => '0.22';
64
65 feature 'Test::WWW::Mechanize Support',
66     -default                         => 1,
67     'Test::WWW::Mechanize::Catalyst' => '0.35';
68
69 feature 'SQLite Support (WARNING: requires a C compiler!)',
70     -default      => 0,
71     'DBI'         => 0,
72     'DBD::SQLite' => 0;
73
74 auto_install;
75 resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/trunk/Task-Catalyst/';
76
77 WriteAll;