Catalyst::Plugin::Session- reccomend some modules for live_app.t to run
[catagits/Catalyst-Plugin-Session.git] / Build.PL
1 use strict;
2 use Module::Build;
3
4 my $build = Module::Build->new(
5     create_makefile_pl => 'traditional',
6     license            => 'perl',
7     module_name        => 'Catalyst::Plugin::Session',
8     requires           => {
9         'perl'                      => '5.8.1',
10         'Catalyst'                  => '5.50',
11     },
12         reccomends         => {
13                 # for live_app.t
14                 'Test::WWW::Mechanize::Catalyst'    => 0,
15                 'Catalyst::Plugin::Session::Cookie' => 0,
16         },
17     create_readme      => 1,
18         sign => 1,
19 );
20 $build->create_build_script;
21