X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=8c672a9febd931ad700744d154b97a610f53ac8f;hb=d7ef03f6e65591eec83471f6887f5928451c494a;hp=241587202d689a1a3fed679839736b8c60dee00b;hpb=b709d328d5753f20718f8feb11484bab3997238c;p=gitmo%2FMooseX-Storage.git diff --git a/Makefile.PL b/Makefile.PL index 2415872..8c672a9 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -8,30 +8,36 @@ name 'MooseX-Storage'; all_from 'lib/MooseX/Storage.pm'; # Specific dependencies -requires 'Moose' => '0.87'; +requires 'Moose' => '0.99'; requires 'String::RewritePrefix'; +author_requires 'Test::Without::Module'; + # you should have at least one # serialization format feature 'JSON', -default => 1, 'JSON::Any' => '1.15', 'Test::JSON' => '0.06'; +author_requires 'JSON::Any' => '1.15'; +author_requires 'Test::JSON' => '0.06'; feature 'YAML', -default => 1, - 'Best' => '0.1', - 'Test::YAML::Valid' => '0'; + 'YAML::Any' => '0'; +author_requires 'YAML::Any'; feature 'Storable', -default => 1, 'Storable' => '0'; +author_requires 'Storable'; # and the ability to save the # file to disk feature 'File', -default => 1, 'IO::File' => '0.1'; +author_requires 'IO::File' => '0.1'; author_tests 't/author';