adding atomic file
[gitmo/MooseX-Storage.git] / Build.PL
index 77f2b77..534b2d8 100644 (file)
--- a/Build.PL
+++ b/Build.PL
@@ -3,15 +3,16 @@ use warnings;
 use Module::Build;
 
 my $builder = Module::Build->new(
-    module_name         => 'MooseX::Storage::JSON',
+    module_name         => 'MooseX::Storage',
     license             => 'perl',
-    dist_author         => 'Chris Prather <perigrin@cpan.org>',
-    dist_version_from   => 'lib/MooseX/Storage/JSON.pm',
+    dist_author         => 'Chris Prather <perigrin@cpan.org>, Stevan Little <stevan@iinteractive.com>',
+    dist_version_from   => 'lib/MooseX/Storage.pm',
     requires => {
         'Test::More' => 0,
-        'version'    => 0,
+        'Moose'      => 0,
+        'JSON::Any'  => 0,
     },
-    add_to_cleanup      => [ 'MooseX-Storage-JSON-*' ],
+    add_to_cleanup      => [ 'MooseX-Storage-*' ],
 );
 
 $builder->create_build_script();