set minimum required version of perl to 5.6 (let's see what the smokers think)
[catagits/Web-Simple.git] / Makefile.PL
index e61e85d..dfad4a1 100644 (file)
@@ -1,6 +1,6 @@
 use strict;
 use warnings FATAL => 'all';
-use 5.008001;
+use 5.006;
 use ExtUtils::MakeMaker;
 
 (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
@@ -28,10 +28,15 @@ my %WriteMakefileArgs = (
 
   META_ADD => {
     prereqs => {
+      configure => {
+        requires => {
+          'ExtUtils::MakeMaker' => 0,
+        },
+      },
       runtime => {
         requires => {
           'Carp' => '0',
-          'Encode' => '0',
+          'Encode' => '0',              # not core in 5.6
           'Exporter' => '0',
           'File::Glob' => '0',
           'HTTP::Body' => '0',
@@ -41,15 +46,13 @@ my %WriteMakefileArgs = (
           'MIME::Base64' => '0',
           'Moo' => '0.009014',
           'Plack' => '0.9968',
-          'Scalar::Util' => '0',
+          'Scalar::Util' => '0',        # not core in 5.6
           'Sub::Quote' => '0',
           'Syntax::Keyword::Gather' => '1.001',
           'URI' => '0',
           'base' => '0',
           'overload' => '0',
-          'strict' => '0',
           'strictures' => '1',
-          'warnings' => '0',
           'warnings::illegalproto' => '0',
           'perl' => '5.006',
         },