X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=96194b74d5e530fac457f031fa7fef4b2c4f1376;hb=6fe7b20df6b50f884fc01bf5f44ef063a5d629ed;hp=d344e080a6222340880046bdb6592718949b93df;hpb=7e3323f7e97349ca095e0d986086434a095bb256;p=catagits%2FCatalyst-Authentication-Credential-HTTP.git diff --git a/Makefile.PL b/Makefile.PL index d344e08..96194b7 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,10 +1,12 @@ 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'; requires 'Catalyst::Runtime'; -requires 'Catalyst::Plugin::Authentication' => '0.10000'; +requires 'Catalyst::Plugin::Authentication' => '0.10005'; requires 'Data::UUID' => '0.11'; requires 'String::Escape'; requires 'Test::Exception'; @@ -12,10 +14,16 @@ requires 'Test::MockObject'; requires 'URI::Escape'; requires 'Class::Accessor::Fast'; +author_requires 'Test::WWW::Mechanize::Catalyst' => '0.51'; +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; -resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Authentication-Credential-HTTP/1.000/trunk/'; WriteAll;