5e5f2aef193a48c7bca89d6c94f56e1275f2c92c
[catagits/Task-Catalyst.git] / Makefile.PL
1 use inc::Module::Install;
2
3 name('Task-Catalyst');
4 abstract('All you need to start with Catalyst');
5 author('Sebastian Riedel');
6 version_from('Catalyst.pm');
7 license('perl');
8
9 include('ExtUtils::AutoInstall');
10
11 requires( 'Catalyst' => '5.57' );
12
13 features(
14     'FormValidator Support' => [
15         -default                          => 1,
16         'Catalyst::Plugin::FormValidator' => 0
17     ],
18     'FormValidator::Simple Support' => [
19         -default                                  => 1,
20         'Catalyst::Plugin::FormValidator::Simple' => 0
21     ],
22     'FillInForm Support' => [
23         -default                       => 1,
24         'Catalyst::Plugin::FillInForm' => 0
25     ],
26     'Prototype Support' => [
27         -default                      => 1,
28         'Catalyst::Plugin::Prototype' => 0
29     ],
30     'Singleton Support' => [
31         -default                      => 1,
32         'Catalyst::Plugin::Singleton' => 0
33     ],
34     'DefaultEnd Support' => [
35         -default                       => 1,
36         'Catalyst::Plugin::DefaultEnd' => 0
37     ],
38     'SubRequest Support' => [
39         -default                       => 1,
40         'Catalyst::Plugin::SubRequest' => 0
41     ],
42     'Session Support' => [
43         -default                                   => 1,
44         'Catalyst::Plugin::Session'                => 0,
45         'Catalyst::Plugin::Session::Store::File'   => 0,
46         'Catalyst::Plugin::Session::State::Cookie' => 0,
47         'Catalyst::Plugin::Session::State::URI'    => 0
48     ],
49     'DBIx::Class Support' => [
50         -default                       => 1,
51         'Catalyst::Model::DBIC'        => 0,
52         'Catalyst::Model::DBIC::Plain' => 0
53     ],
54     'Template::Toolkit Support' => [
55         -default             => 1,
56         'Catalyst::View::TT' => 0
57     ],
58     'Test::WWW::Mechanize Support' => [
59         -default                         => 1,
60         'Test::WWW::Mechanize::Catalyst' => 0
61     ],
62     'SQLite Support' => [
63         -default      => 1,
64         'DBD::SQLite' => 0
65     ],
66     'YAML Support' => [
67         -default => 1,
68         'YAML'   => 0
69     ]
70 );
71
72 auto_install();
73 &WriteAll;