0e94fe16f406d93828d189b9d678b120ccc60236
[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.7006';
7 requires 'Catalyst::Devel' => '1.01';
8
9 feature 'Apache/mod_perl Support',
10   -default                   => 1,
11   'Catalyst::Engine::Apache' => '1.05';
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::Plugin::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 'SubRequest Support',
45     -default                       => 1,
46     'Catalyst::Plugin::SubRequest' => '0.10';
47
48 feature 'Session Support',
49     -default                                   => 1,
50     'Catalyst::Plugin::Session'                => '0.05',
51     'Catalyst::Plugin::Session::Store::File'   => '0.07',
52     'Catalyst::Plugin::Session::State::Cookie' => '0.02',
53     'Catalyst::Plugin::Session::State::URI'    => '0.02';
54
55 feature 'Authentication/Authorization Support',
56     -default                                            => 1,
57     'Catalyst::Plugin::Authentication'                  => '0.05',
58     'Catalyst::Plugin::Authentication::Store::DBIC'     => '0.04',
59     'Catalyst::Plugin::Authentication::Store::Htpasswd' => '0.02',
60     'Catalyst::Plugin::Authorization::ACL'              => '0.06',
61     'Catalyst::Plugin::Authorization::Roles'            => '0.03';
62
63 feature 'I18N Support',
64     -default                 => 1,
65     'Catalyst::Plugin::I18N' => '0.05';
66
67 feature 'BindLex Support',
68     -default                => 1,
69     'Catalyst::Controller::BindLex => '0.03';
70
71 feature 'DBIx::Class Support',
72     -default                        => 1,
73     'Catalyst::Model::DBIC::Schema' => '0.08';
74
75 feature 'Template::Toolkit Support',
76     -default             => 1,
77     'Catalyst::View::TT' => '0.22';
78
79 feature 'Test::WWW::Mechanize Support',
80     -default                         => 1,
81     'Test::WWW::Mechanize::Catalyst' => '0.35';
82
83 feature 'SQLite Support (WARNING: requires a C compiler!)',
84     -default      => 0,
85     'DBD::SQLite' => 0;
86
87 auto_install;
88 WriteAll;