X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Build.PL;h=c5a358afffbc9b2c9aa50165e6aa686d21fa3a85;hb=dd4d43fa88f052b17723e60b2270b0eec254c712;hp=b80eaa7c559c160467bccc91c7d623c6905129e4;hpb=32726d885ed56a2628ec0eccf18b2e898d1ca8ca;p=gitmo%2FMooseX-StrictConstructor.git diff --git a/Build.PL b/Build.PL index b80eaa7..c5a358a 100644 --- a/Build.PL +++ b/Build.PL @@ -1,16 +1,22 @@ use strict; use warnings; +require 5.008; + use Module::Build; -my $builder = Module::Build->new - ( module_name => 'MooseX::StrictConstructor', - license => 'perl', - requires => { 'Test::More' => 0, - }, - create_makefile_pl => 'passthrough', - create_readme => 1, - sign => 1, - ); +my $builder = Module::Build->new( + module_name => 'MooseX::StrictConstructor', + license => 'perl', + requires => { + 'Moose' => '0.74', + }, + build_requires => { + 'Test::More' => '0.88', + }, + create_makefile_pl => 'passthrough', + create_readme => 1, + sign => 1, +); $builder->create_build_script();