No detatch after consumer error
[catagits/Catalyst-Authentication-Credential-OpenID.git] / Makefile.PL
CommitLineData
dd0db210 1use inc::Module::Install 0.87;
4c4e7c7e 2use strict;
3use warnings;
e5b6823d 4
5f33d3e0 5name "Catalyst-Authentication-Credential-OpenID";
6all_from "lib/Catalyst/Authentication/Credential/OpenID.pm";
4c4e7c7e 7author "Ashley Pond V <ashley\@cpan.org>";
5f33d3e0 8
5f33d3e0 9requires "Class::Accessor::Fast" => undef;
10requires "HTML::Parser" => "3";
11requires "LWP::UserAgent" => undef;
12requires "Cache::FastMmap" => "1.28";
13requires "Catalyst" => "5.7";
14requires "Catalyst::Devel" => "1";
5f33d3e0 15requires "Net::OpenID::Consumer" => "1.03";
16requires "Catalyst::Authentication::User::Hash" => undef;
17requires "Catalyst::Plugin::Session::Store::FastMmap" => "0.05";
18requires "Catalyst::Plugin::Session::State::Cookie" => "0.08";
19requires "Catalyst::Engine::HTTP" => undef;
20
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
34if ( $Module::Install::AUTHOR )
35{
36 system("pod2text lib/Catalyst/Authentication/Credential/OpenID.pm > README") == 0
37 or die "Couldn't update the README";
38}
e5b6823d 39
40auto_install;
5f33d3e0 41resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Authentication-Credential-OpenID/';
82d979ac 42
e5b6823d 43WriteAll;
44
45__END__