Set the application class' %INC entry to something useful
[catagits/Web-Simple.git] / Makefile.PL
index 2eae5cf..47def6d 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,16 +28,34 @@ my %WriteMakefileArgs = (
 
   META_ADD => {
     prereqs => {
+      configure => {
+        requires => {
+          'ExtUtils::MakeMaker' => 0,
+        },
+      },
       runtime => {
         requires => {
-          'Syntax::Keyword::Gather' => '1.001',
-          'Plack' => '0.9968',
+          'Encode' => '0',              # not core in 5.6
+          'Exporter' => '5.57',         # use Exporter 'import'
           'Moo' => '0.009014',
-          'warnings::illegalproto' => '0.001',
-          'Data::Dumper::Concise' => '2.020',
+          'Plack' => '0.9968',
+          'Scalar::Util' => '0',        # not core in 5.6
+          'Syntax::Keyword::Gather' => '1.001',
+          'strictures' => '1',
+          'warnings::illegalproto' => '0',
           'perl' => '5.006',
         },
       },
+      test => {
+        requires => {
+          'Data::Dumper::Concise' => '2.020',
+          'Test::More' => '0.88',
+        },
+        recommends => {
+          'Devel::Cycle' => '0',
+          'HTTP::Request::AsCGI' => '0',
+        },
+      },
     },
   },
   realclean => { FILES => [ 'Distar/', 'MANIFEST*' ] },