use core Digest::SHA rather than Digest::SHA1
[catagits/Catalyst-Plugin-Authentication.git] / Makefile.PL
CommitLineData
1b409445 1use strict;
2use warnings;
d4201786 3use inc::Module::Install 0.87;
1b409445 4use Module::Install::AuthorRequires;
5use Module::Install::AuthorTests;
efea013f 6use Module::Install::Authority;
f35dde03 7
c7b6526a 8if ( $Module::Install::AUTHOR ) {
9 system( 'pod2text lib/Catalyst/Plugin/Authentication.pm > README' )
10 and die;
85c6f23d 11}
12
71f2a7df 13perl_version '5.008001';
14
f35dde03 15name 'Catalyst-Plugin-Authentication';
16all_from 'lib/Catalyst/Plugin/Authentication.pm';
58269716 17authority 'cpan:BOBTFISH';
f35dde03 18
f35dde03 19requires 'Catalyst::Runtime';
47cede3d 20requires 'MRO::Compat';
8d5a01fc 21requires 'Moose';
22requires 'MooseX::Emulate::Class::Accessor::Fast';
202af0af 23requires 'namespace::autoclean';
d5e3af2f 24requires 'String::RewritePrefix';
8f57bf96 25requires 'Try::Tiny';
f35dde03 26
4b33bb96 27test_requires 'Test::More' => '0.88';
71f2a7df 28test_requires 'Test::Exception';
c7b6526a 29test_requires 'Class::MOP';
30test_requires 'Moose';
31
c30f39a8 32author_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,
ed6dc2a0 38 'Catalyst::Plugin::Session' => '0.10',
c30f39a8 39 'Catalyst::Plugin::Session::State::Cookie' => 0,
e8b9ffa9 40 'Digest::SHA' => 0,
c30f39a8 41);
1b409445 42
c7b6526a 43author_tests 't/author';
948295dd 44
f35dde03 45auto_install;
1d241ed7 46resources repository => 'git://git.shadowcat.co.uk/catagits/Catalyst-Plugin-Authentication.git';
dc09e932 47
f35dde03 48WriteAll;