cleanup Task::Catalyst
[catagits/Task-Catalyst.git] / Makefile.PL
CommitLineData
999d871c 1use inc::Module::Install 0.64;
f930a8cf 2
999d871c 3name 'Task-Catalyst';
4all_from 'lib/Task/Catalyst.pm';
f930a8cf 5
08c4c68b 6requires 'Catalyst' => '5.7007';
7requires 'Catalyst::Devel' => '1.02';
89d7750a 8
440981f7 9feature 'Apache/mod_perl Support',
10 -default => 1,
11 'Catalyst::Engine::Apache' => '1.05';
12
13feature 'FastCGI Support',
14 -default => 1,
15 'FCGI' => 0,
16 'FCGI::ProcManager' => 0;
17
18feature 'PAR Support',
19 -default => 1,
20 'PAR' => 0;
21
3ba2f482 22feature 'Log4perl Support',
23 -default => 1,
24 'Params::Validate' => 0,
25 'Catalyst::Log::Log4perl' => '0.1';
26
27feature 'HTML::Widget Support',
28 -default => 1,
29 'Date::Calc' => 0,
30 'Catalyst::Plugin::HTML::Widget' => '1.1';
31
440981f7 32feature 'FormBuilder Support',
33 -default => 1,
08c4c68b 34 'Catalyst::Controller::FormBuilder' => '1.06';
440981f7 35
3ba2f482 36feature 'Stacktrace Advanced Debugging Support',
37 -default => 1,
38 'Catalyst::Plugin::StackTrace' => '0.02';
39
40feature 'Prototype Support',
41 -default => 1,
42 'Catalyst::Plugin::Prototype' => '1.32';
43
3ba2f482 44feature '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
51feature '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
59feature 'I18N Support',
60 -default => 1,
61 'Catalyst::Plugin::I18N' => '0.05';
62
440981f7 63feature 'BindLex Support',
64 -default => 1,
08c4c68b 65 'Catalyst::Controller::BindLex' => '0.03';
440981f7 66
3ba2f482 67feature 'DBIx::Class Support',
68 -default => 1,
69 'Catalyst::Model::DBIC::Schema' => '0.08';
70
71feature 'Template::Toolkit Support',
72 -default => 1,
73 'Catalyst::View::TT' => '0.22';
74
75feature 'Test::WWW::Mechanize Support',
76 -default => 1,
77 'Test::WWW::Mechanize::Catalyst' => '0.35';
78
79feature 'SQLite Support (WARNING: requires a C compiler!)',
80 -default => 0,
81 'DBD::SQLite' => 0;
89d7750a 82
999d871c 83auto_install;
84WriteAll;