00f1a9e18f77326c8a9727ab5cb7768360a3f6bf
[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.49',
11         'Test::MockObject' => '1.01',
12         'Test::Deep'       => 0,
13     },
14     reccomends => {
15
16         # for live_app.t
17         'Test::WWW::Mechanize::Catalyst'    => 0,
18         'Catalyst::Plugin::Session::Cookie' => 0,
19
20     },
21     create_readme => 1,
22     sign          => 1,
23 );
24 $build->create_build_script;
25