Make all prereqs explicit in Makefile.PL
David Golden [Wed, 8 Feb 2012 16:57:32 +0000 (11:57 -0500)]
Makefile.PL

index 48818f9..6330b32 100644 (file)
@@ -8,7 +8,13 @@ WriteMakefile(
   NAME => 'Module::Metadata',
   VERSION_FROM => 'lib/Module/Metadata.pm',
   PREREQ_PM => {
-    'Carp' => 0,
-    'version' => 0.87,
+    'Carp'        => 0,
+    'File::Find'  => 0,
+    'File::Spec'  => 0,
+    'IO::File'    => 0,
+    'strict'      => 0,
+    'vars'        => 0,
+    'version'     => 0.87,
+    'warnings'    => 0,
   },
 );