PHP Package: laminas/laminas-recaptcha

Laminas Recaptcha is a PHP library that provides integration with Google's reCAPTCHA service for protecting your web forms from spam and abuse.

Current Version: 3.8.0
Last Updated: 2024-10-24
PHP Requirement: >=7.1
Dependencies: laminas/laminas-http, guzzlehttp/guzzle
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

Laminas Recaptcha is a robust PHP library that seamlessly integrates with Google's reCAPTCHA service to offer advanced protection against spam and abuse on your web forms. By leveraging the power of reCAPTCHA, this library helps you secure your applications and enhance user experience. With easy implementation and customizable options, Laminas Recaptcha is the ideal solution for safeguarding your online forms.

🔗 View on GitHub

Download Latest Version: 3.8.0

Download Download v3.8.0

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php

// Example from PHPlibraries.com
require_once 'libs/laminas/laminas-recaptcha/3.8.0/autoload.php';

use Laminas\Recaptcha\ReCaptcha;
use Laminas\Recaptcha\Validator;
use Laminas\Recaptcha\Service;
use Laminas\Http\Client\Client;
use GuzzleHttp\Client;
use GuzzleHttp\Psr7\Request;


$obj = new Laminas\Recaptcha\ReCaptcha();
echo "✅ Example created successfully.";

?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.