X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=ba141db65c546edcba4ada947aa5ba9203709c0f;hb=torbjorn;hp=5b2a60cc5c742fb763543ae6ede01f4b8e2723de;hpb=3231a8d02d0c89b7fa78085da7e9e45660485089;p=catagits%2FCatalyst-Plugin-ConfigLoader.git diff --git a/Makefile.PL b/Makefile.PL index 5b2a60c..ba141db 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,13 +1,22 @@ -use inc::Module::Install 0.65; +use inc::Module::Install 0.95; + +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.08'; +requires 'Catalyst::Runtime' => '5.7008'; # needed for env_value() +requires 'Data::Visitor' => '0.24'; +requires 'Config::Any' => '0.20'; +requires 'MRO::Compat' => '0.09'; + +test_requires 'Test::More'; +test_requires 'Path::Class'; -requires 'Test::More'; +resources repository => 'git://git.shadowcat.co.uk/catagits/Catalyst-Plugin-ConfigLoader.git'; -auto_install; WriteAll;