45f8f55cc95245090fea8f437f3d8daf0c522050
[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 }
11
12 perl_version '5.008001';
13
14 name 'Catalyst-Plugin-Authentication';
15 all_from 'lib/Catalyst/Plugin/Authentication.pm';
16
17 requires 'Catalyst::Runtime';
18 requires 'Class::Inspector';
19 requires 'MRO::Compat';
20 requires 'Catalyst::Plugin::Session' => '0.10';
21
22 test_requires 'Test::More' => '0.88';
23 test_requires 'Test::Exception';
24 test_requires 'Class::MOP';
25 test_requires 'Moose';
26
27 author_requires 'Test::Pod' => '1.14';
28 author_requires 'Test::Pod::Coverage' => '1.04';
29 author_requires 'Test::NoTabs';
30 author_requires 'Test::WWW::Mechanize::Catalyst';
31 author_requires 'Catalyst::Plugin::Session';
32 author_requires 'Catalyst::Plugin::Session::State::Cookie';
33 author_requires 'Digest::SHA1';
34
35 author_tests 't/author';
36
37 auto_install;
38 resources repository => 'git://git.shadowcat.co.uk/catagits/Catalyst-Plugin-Authentication.git';
39
40 WriteAll;