bump minimum version for authority config
[catagits/Catalyst-Authentication-Credential-HTTP.git] / Makefile.PL
1 use inc::Module::Install 0.87;
2 use Module::Install::AuthorRequires;
3 use Module::Install::AuthorTests;
4
5 name 'Catalyst-Authentication-Credential-HTTP';
6 all_from 'lib/Catalyst/Authentication/Credential/HTTP.pm';
7
8 requires 'Catalyst::Runtime';
9 requires 'Catalyst::Plugin::Authentication' => '0.10005';
10 requires 'Data::UUID' => '0.11';
11 requires 'String::Escape';
12 requires 'URI::Escape';
13 requires 'Class::Accessor::Fast';
14
15 test_requires 'Test::Exception';
16 test_requires 'Test::MockObject';
17 test_requires 'Test::More' => '0.88';
18
19 author_requires 'Test::WWW::Mechanize::Catalyst' => '0.51';
20 author_requires 'Test::Pod' => '1.14';
21 author_requires 'Test::Spelling' => '0.11';
22 author_requires 'Test::Pod::Coverage' => '1.04';
23
24 resources repository => 'git://git.shadowcat.co.uk/catagits/Catalyst/Catalyst-Authentication-Credential-HTTP';
25
26 author_tests 't/author';
27
28 auto_install;
29
30 WriteAll;
31