Version 1.015
[catagits/Catalyst-Authentication-Credential-HTTP.git] / Makefile.PL
CommitLineData
c26592ce 1use inc::Module::Install 0.87;
ac0351e1 2use Module::Install::AuthorRequires;
3use Module::Install::AuthorTests;
826670f9 4
513d8ab6 5name 'Catalyst-Authentication-Credential-HTTP';
6all_from 'lib/Catalyst/Authentication/Credential/HTTP.pm';
826670f9 7
8requires 'Catalyst::Runtime';
6fe7b20d 9requires 'Catalyst::Plugin::Authentication' => '0.10005';
826670f9 10requires 'Data::UUID' => '0.11';
11requires 'String::Escape';
826670f9 12requires 'URI::Escape';
e727ec3c 13requires 'Class::Accessor::Fast';
826670f9 14
ab6b1f6f 15test_requires 'Test::Exception';
16test_requires 'Test::MockObject';
d4fecb80 17test_requires 'Test::More' => '0.88';
18
3aff571e 19author_requires 'Test::WWW::Mechanize::Catalyst' => '0.51';
ac0351e1 20author_requires 'Test::Pod' => '1.14';
21author_requires 'Test::Spelling' => '0.11';
22author_requires 'Test::Pod::Coverage' => '1.04';
23
db1cb29c 24resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Authentication-Credential-HTTP';
25
ac0351e1 26author_tests 't/author';
27
826670f9 28auto_install;
7e3323f7 29
826670f9 30WriteAll;
31