Bump Task::Catalyst Apache version again
[catagits/Task-Catalyst.git] / Makefile.PL
1 use inc::Module::Install 0.64;
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::Widget Support',
28     -default                         => 1,
29     'Date::Calc'                     => 0,
30     'Catalyst::Plugin::HTML::Widget' => '1.1';
31
32 feature 'FormBuilder Support',
33     -default                        => 1,
34     'Catalyst::Controller::FormBuilder' => '1.06';
35
36 feature 'Stacktrace Advanced Debugging Support',
37     -default                       => 1,
38     'Catalyst::Plugin::StackTrace' => '0.02';
39
40 feature 'Prototype Support',
41     -default                      => 1,
42     'Catalyst::Plugin::Prototype' => '1.32';
43
44 feature 'Session Support',
45     -default                                   => 1,
46     'Catalyst::Plugin::Session'                => '0.05',
47     'Catalyst::Plugin::Session::Store::File'   => '0.07',
48     'Catalyst::Plugin::Session::State::Cookie' => '0.02',
49     'Catalyst::Plugin::Session::State::URI'    => '0.02';
50
51 feature 'Authentication/Authorization Support',
52     -default                                            => 1,
53     'Catalyst::Plugin::Authentication'                  => '0.05',
54     'Catalyst::Plugin::Authentication::Store::DBIC'     => '0.04',
55     'Catalyst::Plugin::Authentication::Store::Htpasswd' => '0.02',
56     'Catalyst::Plugin::Authorization::ACL'              => '0.06',
57     'Catalyst::Plugin::Authorization::Roles'            => '0.03';
58
59 feature 'I18N Support',
60     -default                 => 1,
61     'Catalyst::Plugin::I18N' => '0.05';
62
63 feature 'BindLex Support',
64     -default                => 1,
65     'Catalyst::Controller::BindLex' => '0.03';
66
67 feature 'DBIx::Class Support',
68     -default                        => 1,
69     'Catalyst::Model::DBIC::Schema' => '0.08';
70
71 feature 'Template::Toolkit Support',
72     -default             => 1,
73     'Catalyst::View::TT' => '0.22';
74
75 feature 'Test::WWW::Mechanize Support',
76     -default                         => 1,
77     'Test::WWW::Mechanize::Catalyst' => '0.35';
78
79 feature 'SQLite Support (WARNING: requires a C compiler!)',
80     -default      => 0,
81     'DBD::SQLite' => 0;
82
83 auto_install;
84 WriteAll;