Finished updating main authentication POD. Added Changes entry
[catagits/Catalyst-Plugin-Authentication.git] / Build.PL
CommitLineData
c7c003d3 1use strict;
2use Module::Build;
3
4my $build = Module::Build->new(
5 create_makefile_pl => 'traditional',
6 license => 'perl',
7 module_name => 'Catalyst::Plugin::Authentication',
8 requires => {
5bbbabc6 9 'perl' => '5.8.1',
10 'Catalyst' => '5.49',
11 'Class::Inspector' => 0,
12 'Catalyst::Plugin::Session' => '0.10',
488433fd 13 'Tie::RefHash' => '1.35',
c7c003d3 14 },
15 create_readme => 1,
16 sign => 1,
17);
18$build->create_build_script;
19