Fix metadata
[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 'Class::Inspector';
21 requires 'MRO::Compat';
22 requires 'Catalyst::Plugin::Session' => '0.10';
23 requires 'Moose';
24 requires 'MooseX::Emulate::Class::Accessor::Fast';
25 requires 'namespace::autoclean';
26 requires 'String::RewritePrefix';
27 requires 'Try::Tiny';
28
29 test_requires 'Test::More' => '0.88';
30 test_requires 'Test::Exception';
31 test_requires 'Class::MOP';
32 test_requires 'Moose';
33
34 author_requires(
35     'Test::Pod' => '1.14',
36     'Test::Pod::Coverage' => '1.04',
37     'Test::NoTabs' => 0,
38     'Test::EOL' => 0,
39     'Test::WWW::Mechanize::Catalyst' => 0,
40     'Catalyst::Plugin::Session' => 0,
41     'Catalyst::Plugin::Session::State::Cookie' => 0,
42     'Digest::SHA1' => 0,
43 );
44
45 author_tests 't/author';
46
47 auto_install;
48 resources repository => 'git://git.shadowcat.co.uk/catagits/Catalyst-Plugin-Authentication.git';
49
50 WriteAll;