Patch to use JSON::Any and Test::JSON
[gitmo/MooseX-Storage.git] / Build.PL
index 4e2028d..534b2d8 100644 (file)
--- a/Build.PL
+++ b/Build.PL
@@ -5,12 +5,14 @@ use Module::Build;
 my $builder = Module::Build->new(
     module_name         => 'MooseX::Storage',
     license             => 'perl',
-    dist_author         => 'Chris Prather <perigrin@cpan.org>',
+    dist_author         => 'Chris Prather <perigrin@cpan.org>, Stevan Little <stevan@iinteractive.com>',
     dist_version_from   => 'lib/MooseX/Storage.pm',
     requires => {
         'Test::More' => 0,
+        'Moose'      => 0,
+        'JSON::Any'  => 0,
     },
-    add_to_cleanup      => [ 'MooseX-Storage-JSON-*' ],
+    add_to_cleanup      => [ 'MooseX-Storage-*' ],
 );
 
 $builder->create_build_script();