X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=2d8a21511b311cd46c459e5527961fcc7b78a9b4;hb=63096ad1c517b045868c94943f7fdb93c25ffadf;hp=2d8551c88e5e7806c9426cd6a323307e7b6a570f;hpb=c264816e2877d684b9eed88e29868b6efea3c92c;p=catagits%2FCatalyst-Controller-WrapCGI.git diff --git a/Makefile.PL b/Makefile.PL index 2d8551c..2d8a215 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -3,6 +3,7 @@ use inc::Module::Install; name 'Catalyst-Controller-WrapCGI'; all_from 'lib/Catalyst/Controller/WrapCGI.pm'; author 'Matt S. Trout '; +include 'Module::AutoInstall'; requires 'Catalyst' => '5.7007'; requires 'parent'; @@ -12,8 +13,18 @@ requires 'URI'; requires 'File::Find::Rule'; requires 'List::MoreUtils'; requires 'File::Slurp'; +requires 'namespace::clean'; -build_requires 'Test::More'; +requires 'MRO::Compat'; + +if($] < 5.009_005) { + requires 'Class::C3::XS' => '0.08'; + requires 'Class::C3' => '0.20'; +} + +test_requires 'Catalyst::Plugin::Static::Simple'; + +build_requires 'Test::More' => '0.86'; auto_install;