fixed formatting
[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
999d871c 6requires 'Catalyst' => '5.7006';
7requires 'Catalyst::Devel' => '1.01';
89d7750a 8
3ba2f482 9feature 'Log4perl Support',
10 -default => 1,
11 'Params::Validate' => 0,
12 'Catalyst::Log::Log4perl' => '0.1';
13
14feature 'HTML::Widget Support',
15 -default => 1,
16 'Date::Calc' => 0,
17 'Catalyst::Plugin::HTML::Widget' => '1.1';
18
19feature 'Stacktrace Advanced Debugging Support',
20 -default => 1,
21 'Catalyst::Plugin::StackTrace' => '0.02';
22
23feature 'Prototype Support',
24 -default => 1,
25 'Catalyst::Plugin::Prototype' => '1.32';
26
27feature 'DefaultEnd Support',
28 -default => 1,
29 'Catalyst::Plugin::DefaultEnd' => '0.03';
30
31feature 'SubRequest Support',
32 -default => 1,
33 'Catalyst::Plugin::SubRequest' => '0.10';
34
35feature 'Session Support',
36 -default => 1,
37 'Catalyst::Plugin::Session' => '0.05',
38 'Catalyst::Plugin::Session::Store::File' => '0.07',
39 'Catalyst::Plugin::Session::State::Cookie' => '0.02',
40 'Catalyst::Plugin::Session::State::URI' => '0.02';
41
42feature 'Authentication/Authorization Support',
43 -default => 1,
44 'Catalyst::Plugin::Authentication' => '0.05',
45 'Catalyst::Plugin::Authentication::Store::DBIC' => '0.04',
46 'Catalyst::Plugin::Authentication::Store::Htpasswd' => '0.02',
47 'Catalyst::Plugin::Authorization::ACL' => '0.06',
48 'Catalyst::Plugin::Authorization::Roles' => '0.03';
49
50feature 'I18N Support',
51 -default => 1,
52 'Catalyst::Plugin::I18N' => '0.05';
53
54feature 'DBIx::Class Support',
55 -default => 1,
56 'Catalyst::Model::DBIC::Schema' => '0.08';
57
58feature 'Template::Toolkit Support',
59 -default => 1,
60 'Catalyst::View::TT' => '0.22';
61
62feature 'Test::WWW::Mechanize Support',
63 -default => 1,
64 'Test::WWW::Mechanize::Catalyst' => '0.35';
65
66feature 'SQLite Support (WARNING: requires a C compiler!)',
67 -default => 0,
68 'DBD::SQLite' => 0;
89d7750a 69
999d871c 70auto_install;
71WriteAll;