test_requires for TT so we know the test app will run. Dep on new Catalyst with visit...
[catagits/Catalyst-View-Component-SubInclude.git] / 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 'Catalyst-View-Component-SubInclude';
6 all_from 'lib/Catalyst/View/Component/SubInclude.pm';
7
8 requires 'Catalyst::Runtime' => '5.80014';
9 requires 'Catalyst::Plugin::SubRequest';
10 requires 'Moose';
11 requires 'Moose::Role';
12 requires 'Carp';
13 requires 'namespace::clean';
14
15 test_requires 'Catalyst::View::TT';
16
17 catalyst;
18
19 auto_install;
20 WriteAll;