RequireSSL, fixed to support other HTTP engines
[catagits/Catalyst-Plugin-RequireSSL.git] / Build.PL
CommitLineData
1763fe29 1use strict;
2use Module::Build;
3
4my $build = Module::Build->new(
5 create_makefile_pl => 'passthrough',
6 license => 'perl',
7 module_name => 'Catalyst::Plugin::RequireSSL',
8 requires => { 'Catalyst' => '5.23' },
9 create_makefile_pl => 'passthrough',
10 test_files => [
11 glob('t/*.t')
12 ]
13);
14$build->create_build_script;