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=65ea5cb1e4c92da02434c38f0f0b4ec3a9db8c42;hb=09b238b37e903de72e44c5e730e368690a54f373;hpb=ab0b6bbd649a6cc393814ccc262184d8e0038b0f diff --git a/Makefile.PL b/Makefile.PL index 65ea5cb..b45f639 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,17 +1,24 @@ -# 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'; -requires 'Task::Weaken'; + +test_requires 'Catalyst::View::TT'; + +author_requires 'Test::Pod::Coverage' => '1.04'; +author_requires 'Test::Pod' => '1.14'; +author_tests 't/author'; catalyst;