Test the flash feature of C::P::Session
[catagits/Catalyst-Plugin-Session.git] / Build.PL
CommitLineData
37160715 1use strict;
2use Module::Build;
3
4my $build = Module::Build->new(
5 create_makefile_pl => 'traditional',
6 license => 'perl',
7 module_name => 'Catalyst::Plugin::Session',
8 requires => {
a2e8f3ff 9 'perl' => '5.8.1',
10 'Catalyst' => '5.49',
11 'Test::MockObject' => '1.01',
7ae1753f 12 'Digest' => 0,
13 'File::Temp' => 0,
14 'File::Spec' => 0,
a2e8f3ff 15 'Test::Deep' => 0,
7ae1753f 16 'Test::More' => 0,
aba9c049 17 'Test::Exception' => 0,
37160715 18 },
45c0711b 19 reccomends => {
20
21 # for live_app.t
22 'Test::WWW::Mechanize::Catalyst' => 0,
23 'Catalyst::Plugin::Session::Cookie' => 0,
a2e8f3ff 24
45c0711b 25 },
26 create_readme => 1,
27 sign => 1,
37160715 28);
29$build->create_build_script;
30