9608ffc402c9ff3429fa5988f0974a199d48d244
[catagits/Catalyst-Plugin-Authentication.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use inc::Module::Install 0.87;
4 use Module::Install::AuthorRequires;
5 use Module::Install::AuthorTests;
6
7 if ( $Module::Install::AUTHOR ) {
8     system( 'pod2text lib/Catalyst/Plugin/Authentication.pm > README' )
9         and die;
10     require Module::Install::AuthorTests;
11 }
12
13 perl_version '5.008001';
14
15 name 'Catalyst-Plugin-Authentication';
16 all_from 'lib/Catalyst/Plugin/Authentication.pm';
17
18 requires 'Catalyst::Runtime';
19 requires 'Class::Inspector';
20 requires 'MRO::Compat';
21 requires 'Catalyst::Plugin::Session' => '0.10';
22
23 test_requires 'Test::More' => '0.88';
24 test_requires 'Test::Exception';
25 test_requires 'Class::MOP';
26 test_requires 'Moose';
27
28 author_requires 'Test::WWW::Mechanize::Catalyst';
29 author_requires 'Catalyst::Plugin::Session';
30 author_requires 'Catalyst::Plugin::Session::State::Cookie';
31 author_requires 'Digest::SHA1';
32
33 author_tests 't/author';
34
35 auto_install;
36 resources repository => 'git://git.shadowcat.co.uk/catagits/Catalyst-Plugin-Authentication.git';
37
38 WriteAll;