X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-View-Component-SubInclude.git;a=blobdiff_plain;f=Makefile.PL;h=b45f63921628924492a4d2fcca3d61c1fc381457;hp=30d6739f8430c24b72b6b2a2695348776b6e2425;hb=09b238b37e903de72e44c5e730e368690a54f373;hpb=aea6a2daf91fe3f71f5018d78fdeeff3da6833c8 diff --git a/Makefile.PL b/Makefile.PL index 30d6739..b45f639 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,17 +1,25 @@ -# IMPORTANT: if you delete this file your app will not work as -# expected. you have been warned -use inc::Module::Install; +use strict; +use warnings; +use inc::Module::Install 0.91; +use Module::Install::AuthorRequires; +use Module::Install::AuthorTests; name 'Catalyst-View-Component-SubInclude'; all_from 'lib/Catalyst/View/Component/SubInclude.pm'; -requires 'Catalyst::Runtime' => '5.70000'; +requires 'Catalyst::Runtime' => '5.80014'; requires 'Catalyst::Plugin::SubRequest'; requires 'Moose'; requires 'Moose::Role'; requires 'Carp'; requires 'namespace::clean'; +test_requires 'Catalyst::View::TT'; + +author_requires 'Test::Pod::Coverage' => '1.04'; +author_requires 'Test::Pod' => '1.14'; +author_tests 't/author'; + catalyst; auto_install;