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