added .gitignore, updated MANIFEST.SKIP
[catagits/Catalyst-Plugin-ConfigLoader-Environment.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use inc::Module::Install;
4
5 name('Catalyst-Plugin-ConfigLoader-Environment');
6 author('Jonathan Rockway <jrockway@cpan.org>');
7 all_from('lib/Catalyst/Plugin/ConfigLoader/Environment.pm');
8 license('Perl');
9 include('ExtUtils::AutoInstall');
10
11 requires('Catalyst' => '5.7000');
12 requires('JSON::Any');
13 requires('MRO::Compat');
14 build_requires('Test::More' => 0.88);
15
16 auto_install();
17 WriteAll();