X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=40c927519c7343afc0abf717fe4e9d0d771c9602;hb=d941289628aa271d9015d709290dcc9ef5d6395f;hp=f6bdc59b408290f7756977b4c542079c38118f55;hpb=513d8ab6f47359066c6e6f6647d04d39badda300;p=catagits%2FCatalyst-Authentication-Credential-HTTP.git diff --git a/Makefile.PL b/Makefile.PL index f6bdc59..40c9275 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,4 +1,6 @@ -use inc::Module::Install 0.65; +use inc::Module::Install 0.87; +use Module::Install::AuthorRequires; +use Module::Install::AuthorTests; name 'Catalyst-Authentication-Credential-HTTP'; all_from 'lib/Catalyst/Authentication/Credential/HTTP.pm'; @@ -10,7 +12,17 @@ requires 'String::Escape'; requires 'Test::Exception'; requires 'Test::MockObject'; requires 'URI::Escape'; +requires 'Class::Accessor::Fast'; + +author_requires 'Test::Pod' => '1.14'; +author_requires 'Test::Spelling' => '0.11'; +author_requires 'Test::Pod::Coverage' => '1.04'; + +resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Authentication-Credential-HTTP'; + +author_tests 't/author'; auto_install; + WriteAll;