Session::State::Cookie, fixed cookie_expires to support browser session cookies,...
[catagits/Catalyst-Plugin-Session-State-Cookie.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::State::Cookie',
8     requires           => {
9         'Catalyst::Plugin::Session' => '0.01',
10         'Test::MockObject'          => '1.01',
11     },
12     create_readme => 1,
13     sign          => 1,
14 );
15 $build->create_build_script;
16