X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=5811335c4f3717ff92dd6fad8b1cc581fc491966;hb=1b549262b60dc050bf0220db26f8ec3f6e205676;hp=9998e72bb2f4e2abe413b60350c53b49208e69fc;hpb=77c20d10b7bc5517c6589c41830188fea0a799bf;p=catagits%2FCatalyst-Plugin-ConfigLoader.git diff --git a/Makefile.PL b/Makefile.PL index 9998e72..5811335 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,13 +1,19 @@ -use inc::Module::Install 0.65; +use inc::Module::Install 0.77; + +if ( -e 'MANIFEST.SKIP' ) { + system( 'pod2text lib/Catalyst/Plugin/ConfigLoader.pm > README' ); +} + +perl_version '5.008'; name 'Catalyst-Plugin-ConfigLoader'; all_from 'lib/Catalyst/Plugin/ConfigLoader.pm'; -requires 'Catalyst::Runtime'; -requires 'Data::Visitor' => '0.02'; -requires 'Config::Any' => '0.04'; +requires 'Catalyst::Runtime' => '5.7008'; # needed for env_value() +requires 'Data::Visitor' => '0.02'; +requires 'Config::Any' => '0.08'; -requires 'Test::More'; +test_requires 'Test::More'; auto_install; WriteAll;