HTTP auth live app test
[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 => {
9 'perl' => '5.8.1',
10 'Catalyst' => '5.49',
11 'Catalyst::Plugin::Authentication' => 0,
12 'String::Escape' => 0,
13 'URI::Escape' => 0,
14 },
15 create_readme => 1,
16 sign => 1,
17);
18$build->create_build_script;
19