Move actions out of test app
[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';
513d8ab6 9requires 'Catalyst::Plugin::Authentication' => '0.10000';
826670f9 10requires 'Data::UUID' => '0.11';
11requires 'String::Escape';
12requires 'Test::Exception';
13requires 'Test::MockObject';
14requires 'URI::Escape';
e727ec3c 15requires 'Class::Accessor::Fast';
826670f9 16
ac0351e1 17author_requires 'Test::Pod' => '1.14';
18author_requires 'Test::Spelling' => '0.11';
19author_requires 'Test::Pod::Coverage' => '1.04';
20
db1cb29c 21resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Authentication-Credential-HTTP';
22
ac0351e1 23author_tests 't/author';
24
826670f9 25auto_install;
7e3323f7 26
826670f9 27WriteAll;
28