- fixed typo in Credential::TypeKey
[catagits/Catalyst-Authentication-Credential-HTTP-Proxy.git] / Build.PL
CommitLineData
c38534fd 1use strict;
2use Module::Build;
3
4my $build = Module::Build->new(
b9f1b4a0 5 create_makefile_pl => 'traditional',
c38534fd 6 license => 'perl',
75166a97 7 module_name => 'Catalyst::Plugin::Authentication::Credential::TypeKey',
8 requires => {
9 'Catalyst' => '5.5',
10 'Catalyst::Plugin::Authentication' => 0,
b9f1b4a0 11 'Authen::TypeKey' => 0,
c38534fd 12 },
01422dad 13 build_requires => {
14 'Test::MockObject' => '1.01'
c9a032f6 15 },
c38534fd 16 create_readme => 1,
75166a97 17 sign => 1,
c38534fd 18);
19$build->create_build_script;
20