No need for an around modifier, can quite happily be a before
[catagits/Catalyst-View-Component-SubInclude.git] / t / ESITest / Makefile.PL
CommitLineData
30726632 1# IMPORTANT: if you delete this file your app will not work as
2# expected. you have been warned
3use inc::Module::Install;
4
5name 'ESITest';
6all_from 'lib/ESITest.pm';
7
8requires 'Catalyst::Runtime' => '5.7014';
9requires 'Catalyst::Plugin::ConfigLoader';
10requires 'Catalyst::Plugin::Static::Simple';
11requires 'Catalyst::Action::RenderView';
12requires 'parent';
13requires 'Config::General'; # This should reflect the config file format you've chosen
14 # See Catalyst::Plugin::ConfigLoader for supported formats
15catalyst;
16
17install_script glob('script/*.pl');
18auto_install;
19WriteAll;