(no commit message)
[catagits/Catalyst-Authentication-Credential-HTTP.git] / Build.PL
CommitLineData
2022b950 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::Credential::HTTP',
8 requires => {
ed61ff6d 9 'perl' => '5.8.1',
10 'Catalyst' => '5.49',
2022b950 11 'Catalyst::Plugin::Authentication' => 0,
ed61ff6d 12 'String::Escape' => 0,
13 'URI::Escape' => 0,
14 'Test::MockObject' => '1.01',
15 'Test::Exception' => 0,
8fbd36d0 16 'Data::UUID' => 0.11
2022b950 17 },
18 create_readme => 1,
b0cd4eb2 19 sign => 0,
2022b950 20);
21$build->create_build_script;
22