Fixes to docs and AUTHORITY
[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';
efea013f 17authority 'BOBTFISH';
f35dde03 18
f35dde03 19requires 'Catalyst::Runtime';
20requires 'Class::Inspector';
47cede3d 21requires 'MRO::Compat';
f35dde03 22requires 'Catalyst::Plugin::Session' => '0.10';
8d5a01fc 23requires 'Moose';
24requires 'MooseX::Emulate::Class::Accessor::Fast';
25requires 'namespace::clean';
26
f35dde03 27
4b33bb96 28test_requires 'Test::More' => '0.88';
71f2a7df 29test_requires 'Test::Exception';
c7b6526a 30test_requires 'Class::MOP';
31test_requires 'Moose';
32
4a9f962f 33author_requires 'Test::Pod' => '1.14';
34author_requires 'Test::Pod::Coverage' => '1.04';
35author_requires 'Test::NoTabs';
1b409445 36author_requires 'Test::WWW::Mechanize::Catalyst';
37author_requires 'Catalyst::Plugin::Session';
38author_requires 'Catalyst::Plugin::Session::State::Cookie';
39author_requires 'Digest::SHA1';
40
c7b6526a 41author_tests 't/author';
948295dd 42
f35dde03 43auto_install;
1d241ed7 44resources repository => 'git://git.shadowcat.co.uk/catagits/Catalyst-Plugin-Authentication.git';
dc09e932 45
f35dde03 46WriteAll;