X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=ba141db65c546edcba4ada947aa5ba9203709c0f;hb=40042d9c3be730fbddf0394e056ce08caaad9ee5;hp=8659e67522bb5449bc01c13e3ab638b4a8484eb6;hpb=587d381b43681a3529349505abcc351aec54fb01;p=catagits%2FCatalyst-Plugin-ConfigLoader.git diff --git a/Makefile.PL b/Makefile.PL index 8659e67..ba141db 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,4 +1,4 @@ -use inc::Module::Install 0.67; +use inc::Module::Install 0.95; if ( -e 'MANIFEST.SKIP' ) { system( 'pod2text lib/Catalyst/Plugin/ConfigLoader.pm > README' ); @@ -10,10 +10,13 @@ name 'Catalyst-Plugin-ConfigLoader'; all_from 'lib/Catalyst/Plugin/ConfigLoader.pm'; requires 'Catalyst::Runtime' => '5.7008'; # needed for env_value() -requires 'Data::Visitor' => '0.02'; -requires 'Config::Any' => '0.08'; +requires 'Data::Visitor' => '0.24'; +requires 'Config::Any' => '0.20'; +requires 'MRO::Compat' => '0.09'; test_requires 'Test::More'; +test_requires 'Path::Class'; + +resources repository => 'git://git.shadowcat.co.uk/catagits/Catalyst-Plugin-ConfigLoader.git'; -auto_install; WriteAll;