completed the tests to use .pl config only
[catagits/Catalyst-Plugin-ConfigLoader.git] / Makefile.PL
index 8659e67..ba141db 100644 (file)
@@ -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;