- fixed typo in Credential::TypeKey
[catagits/Catalyst-Authentication-Credential-HTTP-Proxy.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::Credential::TypeKey',
8     requires    => {
9         'Catalyst'                         => '5.5',
10         'Catalyst::Plugin::Authentication' => 0,
11         'Authen::TypeKey'                  => 0,
12     },
13     build_requires => {
14         'Test::MockObject' => '1.01'
15     },
16     create_readme => 1,
17     sign          => 1,
18 );
19 $build->create_build_script;
20