fixed formatting
[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 'Log4perl Support',
10     -default                  => 1,
11     'Params::Validate'        => 0,
12     'Catalyst::Log::Log4perl' => '0.1';
13
14 feature 'HTML::Widget Support',
15     -default                         => 1,
16     'Date::Calc'                     => 0,
17     'Catalyst::Plugin::HTML::Widget' => '1.1';
18
19 feature 'Stacktrace Advanced Debugging Support',
20     -default                       => 1,
21     'Catalyst::Plugin::StackTrace' => '0.02';
22
23 feature 'Prototype Support',
24     -default                      => 1,
25     'Catalyst::Plugin::Prototype' => '1.32';
26
27 feature 'DefaultEnd Support',
28     -default                       => 1,
29     'Catalyst::Plugin::DefaultEnd' => '0.03';
30
31 feature 'SubRequest Support',
32     -default                       => 1,
33     'Catalyst::Plugin::SubRequest' => '0.10';
34
35 feature '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
42 feature '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
50 feature 'I18N Support',
51     -default                 => 1,
52     'Catalyst::Plugin::I18N' => '0.05';
53
54 feature 'DBIx::Class Support',
55     -default                        => 1,
56     'Catalyst::Model::DBIC::Schema' => '0.08';
57
58 feature 'Template::Toolkit Support',
59     -default             => 1,
60     'Catalyst::View::TT' => '0.22';
61
62 feature 'Test::WWW::Mechanize Support',
63     -default                         => 1,
64     'Test::WWW::Mechanize::Catalyst' => '0.35';
65
66 feature 'SQLite Support (WARNING: requires a C compiler!)',
67     -default      => 0,
68     'DBD::SQLite' => 0;
69
70 auto_install;
71 WriteAll;