make auth depend on session 0.10
[catagits/Catalyst-Plugin-Authentication.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::Authentication',
8     requires           => {
9         'perl'                      => '5.8.1',
10         'Catalyst'                  => '5.49',
11         'Class::Inspector'          => 0,
12         'Catalyst::Plugin::Session' => '0.10',
13     },
14     create_readme => 1,
15     sign          => 1,
16 );
17 $build->create_build_script;
18