X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=3be4b77b04e57974db1f159809373cb6a6111a8d;hb=a3abf05a7a306bbc349a82265ba6441db14e9480;hp=c1501a612ed9c5ff05f4f48250e9d84d5023fa48;hpb=d99b76939096104686844f02449947620bedff31;p=catagits%2FCatalyst-Authentication-Credential-HTTP.git diff --git a/Makefile.PL b/Makefile.PL index c1501a6..3be4b77 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,16 +1,31 @@ -use inc::Module::Install 0.65; +use inc::Module::Install 0.87; +use Module::Install::AuthorRequires; +use Module::Install::AuthorTests; -name 'Catalyst-Plugin-Authentication-Credential-HTTP'; -all_from 'lib/Catalyst/Plugin/Authentication/Credential/HTTP.pm'; +name 'Catalyst-Authentication-Credential-HTTP'; +all_from 'lib/Catalyst/Authentication/Credential/HTTP.pm'; requires 'Catalyst::Runtime'; -requires 'Catalyst::Plugin::Authentication'; +requires 'Catalyst::Plugin::Authentication' => '0.10005'; requires 'Data::UUID' => '0.11'; requires 'String::Escape'; -requires 'Test::Exception'; -requires 'Test::MockObject'; requires 'URI::Escape'; +requires 'Class::Accessor::Fast'; + +test_requires 'Test::Exception'; +test_requires 'Test::MockObject'; +test_requires 'Test::More' => '0.88'; + +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; + WriteAll;