Mojolicious-Plugin-ReCAPTCHAv2
view release on metacpan or search on metacpan
1.06 2020-06-16 20:11:58+02:00 Europe/Berlin
- Remove accidently added directory
- Re-Upload to CPAN, since the last version vanished somehow
(Thanks, LEEJO)
1.05 2020-03-01 20:46:46+01:00 Europe/Berlin
- Make IO::Socket::SSL an explicit dependency to hopefully
fix the problem reported by CPAN testers
1.04 2020-02-24 17:27:07+01:00 Europe/Berlin
- No differences to trial release 1.03
- Thanks LEEJO for reminding me to release this (RT#131221)
1.03 2019-05-11 19:00:34+02:00 Europe/Berlin (TRIAL RELEASE)
- Adapt a few more test cases (RT#129176)
1.02 2019-05-05 19:30:24+02:00 Europe/Berlin (TRIAL RELEASE)
0.3 2015-10-01 11:52:49+02:00 Europe/Berlin
- Fix compatibility with older versions of Mojo::JSON API
0.2 2015-09-30 13:17:55+02:00 Europe/Berlin
- Fix compatibility with Mojolicious 6.22
0.1 2015-08-04 11:44:44+02:00 Europe/Berlin
- Fix compatibility with older Mojolicious versions
(hopefully back to 3.02 or even older)
- Add IO::Socket::SSL as prerequisite
0.04 2015-07-30 22:27:10+02:00 Europe/Berlin
- API CHANGE! recaptcha_verify() now only returns
either "0" or "1"; former return value "-1" is
now subsumed under "0" and can be distinguished by
analyzing the error codes
- Added tests (pgraemer)
- POD fix and some code reformatting (pgraemer)
- Fix error handling for failed verification requests
},
"name" : "Mojolicious-Plugin-ReCAPTCHAv2",
"prereqs" : {
"configure" : {
"requires" : {
"ExtUtils::MakeMaker" : "0"
}
},
"runtime" : {
"requires" : {
"IO::Socket::SSL" : "0",
"Mojolicious" : "7.53"
}
}
},
"release_status" : "stable",
"resources" : {
"repository" : {
"type" : "git",
"url" : "https://github.com/heikojansen/mojolicious-plugin-recaptchav2.git",
"web" : "https://github.com/heikojansen/mojolicious-plugin-recaptchav2"
configure_requires:
ExtUtils::MakeMaker: '0'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.012, CPAN::Meta::Converter version 2.150010'
license: gpl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: '1.4'
name: Mojolicious-Plugin-ReCAPTCHAv2
requires:
IO::Socket::SSL: '0'
Mojolicious: '7.53'
resources:
repository: https://github.com/heikojansen/mojolicious-plugin-recaptchav2.git
version: '1.06'
x_generated_by_perl: v5.30.1
x_serialization_backend: 'YAML::Tiny version 1.73'
Makefile.PL view on Meta::CPAN
my %WriteMakefileArgs = (
"ABSTRACT" => "use Googles \"No CAPTCHA reCAPCTHA\" (reCAPTCHA v2) service in Mojolicious apps",
"AUTHOR" => "Heiko Jansen <hjansen\@cpan.org>",
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0
},
"DISTNAME" => "Mojolicious-Plugin-ReCAPTCHAv2",
"LICENSE" => "gpl",
"NAME" => "Mojolicious::Plugin::ReCAPTCHAv2",
"PREREQ_PM" => {
"IO::Socket::SSL" => 0,
"Mojolicious" => "7.53"
},
"VERSION" => "1.06",
"test" => {
"TESTS" => "t/*.t"
}
);
my %FallbackPrereqs = (
"IO::Socket::SSL" => 0,
"Mojolicious" => "7.53"
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
delete $WriteMakefileArgs{BUILD_REQUIRES};
$WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}
( run in 0.749 second using v1.01-cache-2.11-cpan-fd5d4e115d8 )