X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=168def186d7af75430febd2a437c453ec9155a32;hb=1f2bf910bc518ecaca53d2d8572d3b95af0119b9;hp=2e7160b74b51cce1e8ad9f98d61689e27f065348;hpb=12ef2a3050686f217289ed540d4f46edf0b37fe8;p=catagits%2FCatalyst-Plugin-ConfigLoader.git diff --git a/Makefile.PL b/Makefile.PL index 2e7160b..168def1 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' => '5.7008'; # needed for env_value() -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'; -requires 'Test::More'; +test_requires 'Test::More'; + +resources repository => 'git://git.shadowcat.co.uk/catagits/Catalyst-Plugin-ConfigLoader.git'; -auto_install; WriteAll; +