fixin up the ArrayRef and HashRef expand/collapse stuff and adding the ability to...
[gitmo/MooseX-Storage.git] / Makefile.PL
index 73561c5..9acfa80 100644 (file)
@@ -3,15 +3,16 @@ use warnings;
 use ExtUtils::MakeMaker;
 
 WriteMakefile(
-    NAME                => 'MooseX::Storage::JSON',
-    AUTHOR              => 'Chris Prather <perigrin@cpan.org>',
-    VERSION_FROM        => 'lib/MooseX/Storage/JSON.pm',
-    ABSTRACT_FROM       => 'lib/MooseX/Storage/JSON.pm',
-    PL_FILES            => {},
-    PREREQ_PM => {
+    NAME          => 'MooseX::Storage',
+    AUTHOR        => 'Chris Prather <perigrin@cpan.org>, Stevan Little <stevan@iinteractive.com>',
+    VERSION_FROM  => 'lib/MooseX/Storage.pm',
+    ABSTRACT_FROM => 'lib/MooseX/Storage.pm',
+    PL_FILES      => {},
+    PREREQ_PM     => {
         'Test::More' => 0,
-        'version'    => 0,
+        'Moose'      => 0,
+        'JSON::Any'  => 0,
     },
-    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
-    clean               => { FILES => 'MooseX-Storage-JSON-*' },
+    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
+    clean => { FILES    => 'MooseX-Storage-*' },
 );