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