completed the tests to use .pl config only
[catagits/Catalyst-Plugin-ConfigLoader.git] / Makefile.PL
CommitLineData
7386dd18 1use inc::Module::Install 0.95;
92e263ac 2
587d381b 3if ( -e 'MANIFEST.SKIP' ) {
92e263ac 4 system( 'pod2text lib/Catalyst/Plugin/ConfigLoader.pm > README' );
5}
d7948757 6
bdaf01bf 7perl_version '5.008';
8
d7948757 9name 'Catalyst-Plugin-ConfigLoader';
10all_from 'lib/Catalyst/Plugin/ConfigLoader.pm';
11
587d381b 12requires 'Catalyst::Runtime' => '5.7008'; # needed for env_value()
e74ddd14 13requires 'Data::Visitor' => '0.24';
c5094338 14requires 'Config::Any' => '0.20';
123852c9 15requires 'MRO::Compat' => '0.09';
d7948757 16
bdaf01bf 17test_requires 'Test::More';
19ad93a7 18test_requires 'Path::Class';
d7948757 19
f9d284ae 20resources repository => 'git://git.shadowcat.co.uk/catagits/Catalyst-Plugin-ConfigLoader.git';
115eb8ef 21
d7948757 22WriteAll;