Refactor HTTP cred, part I
[catagits/Catalyst-Authentication-Credential-HTTP.git] / Build.PL
CommitLineData
2022b950 1use strict;
2use Module::Build;
2022b950 3my $build = Module::Build->new(
4 create_makefile_pl => 'traditional',
5 license => 'perl',
6 module_name => 'Catalyst::Plugin::Authentication::Credential::HTTP',
7 requires => {
ed61ff6d 8 'perl' => '5.8.1',
9 'Catalyst' => '5.49',
2022b950 10 'Catalyst::Plugin::Authentication' => 0,
ed61ff6d 11 'String::Escape' => 0,
12 'URI::Escape' => 0,
13 'Test::MockObject' => '1.01',
14 'Test::Exception' => 0,
8fbd36d0 15 'Data::UUID' => 0.11
2022b950 16 },
17 create_readme => 1,
b0cd4eb2 18 sign => 0,
2022b950 19);
20$build->create_build_script;