Did I mention that I'm rubbish at naming things. I'll start caring about that when...
[catagits/CatalystX-DynamicComponent.git] / Makefile.PL
CommitLineData
8798165a 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 'DynamicAppDemo';
6all_from 'lib/DynamicAppDemo.pm';
7
d42c5c76 8requires 'MooseX::Types::Structured' => '0.12';
9requires 'namespace::autoclean';
10requires 'MooseX::Types' => '0.10';
7d26c84b 11requires 'Catalyst::Model::Adaptor';
12requires 'Catalyst::Runtime' => '5.80001';
8798165a 13requires 'Catalyst::Plugin::ConfigLoader';
fa2fa199 14requires 'YAML';
15
8798165a 16catalyst;
17
18install_script glob('script/*.pl');
19auto_install;
20WriteAll;