migrate to git \o/
[catagits/Catalyst-Authentication-Credential-OpenID.git] / Makefile.PL
CommitLineData
dd0db210 1use inc::Module::Install 0.87;
4c4e7c7e 2use strict;
3use warnings;
09fb9633 4use Module::Install::AuthorTests;
e5b6823d 5
5f33d3e0 6name "Catalyst-Authentication-Credential-OpenID";
7all_from "lib/Catalyst/Authentication/Credential/OpenID.pm";
4c4e7c7e 8author "Ashley Pond V <ashley\@cpan.org>";
5f33d3e0 9
5f33d3e0 10requires "Class::Accessor::Fast" => undef;
11requires "HTML::Parser" => "3";
12requires "LWP::UserAgent" => undef;
13requires "Cache::FastMmap" => "1.28";
14requires "Catalyst" => "5.7";
15requires "Catalyst::Devel" => "1";
5f33d3e0 16requires "Net::OpenID::Consumer" => "1.03";
09fb9633 17requires "Catalyst::Plugin::Authentication";
5f33d3e0 18requires "Catalyst::Plugin::Session::Store::FastMmap" => "0.05";
19requires "Catalyst::Plugin::Session::State::Cookie" => "0.08";
5f33d3e0 20
cfead604 21recommends "Config::General" => "2";
22recommends "YAML" => "0.6";
23recommends "Math::BigInt" => undef;
6342195d 24recommends "LWPx::ParanoidAgent" => "1.03";
e5b6823d 25
0ad3a87d 26test_requires "Catalyst::Engine::HTTP";
27
5f33d3e0 28test_requires "Test::More" => "0.42";
92a1e845 29# test_requires "Test::WWW::Mechanize" => "1.20";
47a60d41 30# test_requires "Net::OpenID::Server" => "1.02";
92a1e845 31# test_requires "Net::DNS" => undef;
32# test_requires "IO::Socket::INET" => undef;
5f33d3e0 33
26914c33 34author_tests 't/author';
09fb9633 35author_requires(
36 'Test::WWW::Mechanize' => undef,
37 'Catalyst::Runtime' => undef,
38 'Catalyst::Devel' => undef,
39 'Cache::FastMmap' => undef,
40 'Catalyst::Plugin::Session::State::Cookie' => undef,
41 'Catalyst::Plugin::Session::Store::FastMmap' => undef,
42 'Class::Accessor::Fast' => undef,
43 'Crypt::DH' => undef,
44 'ExtUtils::MakeMaker' => undef,
45 'HTML::Parser' => 3,
46 'LWP::UserAgent' => undef,
47 'Net::OpenID::Consumer' => undef,
48 'Net::OpenID::Server' => undef,
49 'Test::WWW::Mechanize' => undef,
50 'Net::DNS' => undef,
51 'IO::Socket::INET' => undef,
52);
53
54
5f33d3e0 55if ( $Module::Install::AUTHOR )
56{
57 system("pod2text lib/Catalyst/Authentication/Credential/OpenID.pm > README") == 0
58 or die "Couldn't update the README";
59}
e5b6823d 60
360eefaf 61resources repository => 'git://git.shadowcat.co.uk/catagits/Catalyst-Authentication-Credential-OpenID.git';
82d979ac 62
e5b6823d 63WriteAll;
64
65__END__