X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=563d8926c0c5cde27835119f40fd48338ad216fe;hb=f91430591cdd881aa7bd358615be6df112aee3f9;hp=6f56619e05a02eaf638a42102194c3cabffb4494;hpb=399f35008260625b5e127628e0c3e80c3b145cfe;p=gitmo%2FMooseX-Storage.git diff --git a/Makefile.PL b/Makefile.PL index 6f56619..563d892 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,19 +1,19 @@ # Load the Module::Install bundled in ./inc/ -use inc::Module::Install; +use inc::Module::Install 0.75; # Define metadata name 'MooseX-Storage'; all_from 'lib/MooseX/Storage.pm'; # Specific dependencies -requires 'Moose' => '0.20'; +requires 'Moose' => '0.39'; # you should have at least one # serialization format feature 'JSON', -default => 1, - 'JSON::Any' => '0.1', - 'Test::JSON' => '0'; + 'JSON::Any' => '1.15', + 'Test::JSON' => '0.06'; feature 'YAML', -default => 1, @@ -30,9 +30,10 @@ feature 'File', -default => 1, 'IO::File' => '0.1'; -build_requires 'Test::More' => '0.42'; - -no_index 'directory' => 'ex'; +build_requires 'Test::More' => '0.42'; +build_requires 'Test::Deep' => '0'; +build_requires 'Test::Exception' => '0'; +build_requires 'Test::TempDir' => '0.02'; auto_install; WriteAll;