skillaug/re-captcha

reCaptcha 2.0


Keywords
recaptcha, reCaptcha 2.0
License
BSD-3-Clause

Documentation

reCaptcha

Google reCaptcha 2.0 for PHP

Installation

composer require skillaug/re-captcha "1.0.0"

Usage

$secret = 'YOUR_SECRET';

$reCaptcha = new \skillaug\reCaptcha( $secret );

$response = $reCaptcha->verifyResponse(@$_POST["g-recaptcha-response"]);

if ( empty( $response ) || $response->success === false ) {
    die('invalid captcha');
}