8da17eca594d61e5613abbe47853bcb8163d5ef2
[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 use Module::Install::Authority;
7
8 if ( $Module::Install::AUTHOR ) {
9     system( 'pod2text lib/Catalyst/Plugin/Authentication.pm > README' )
10         and die;
11 }
12
13 perl_version '5.008001';
14
15 name 'Catalyst-Plugin-Authentication';
16 all_from 'lib/Catalyst/Plugin/Authentication.pm';
17 authority 'cpan:BOBTFISH';
18
19 requires 'Catalyst::Runtime';
20 requires 'MRO::Compat';
21 requires 'Moose';
22 requires 'MooseX::Emulate::Class::Accessor::Fast';
23 requires 'namespace::autoclean';
24 requires 'String::RewritePrefix';
25 requires 'Try::Tiny';
26
27 test_requires 'Test::More' => '0.88';
28 test_requires 'Test::Exception';
29 test_requires 'Class::MOP';
30 test_requires 'Moose';
31
32 author_requires(
33     'Test::Pod' => '1.14',
34     'Test::Pod::Coverage' => '1.04',
35     'Test::NoTabs' => 0,
36     'Test::EOL' => 0,
37     'Test::WWW::Mechanize::Catalyst' => 0,
38     'Catalyst::Plugin::Session' => '0.10',
39     'Catalyst::Plugin::Session::State::Cookie' => 0,
40     'Digest::SHA' => 0,
41 );
42
43 author_tests 't/author';
44
45 auto_install;
46 resources repository => 'git://git.shadowcat.co.uk/catagits/Catalyst-Plugin-Authentication.git';
47
48 WriteAll;