Skip to content

Latest commit

 

History

History
39 lines (24 loc) · 967 Bytes

README.md

File metadata and controls

39 lines (24 loc) · 967 Bytes

NdCaptcha: 2Captcha

API module integration from 2Captcha.

Installation

To install Nd Captcha, simply:

$ composer require warifp/nd-captcha

For latest commit version:

$ composer require warifp/nd-captcha @dev

Requirements

PHP Nd Captcha works with PHP 7.0, 7.1, 7.2, 7.3, 7.4, and 8.0.

Quick Start and Examples

More examples are available under /examples.

require __DIR__ . '/vendor/autoload.php';

use NdCaptcha\NdCaptcha;

$recaptcha = new NdCaptcha(
    '2CAPTCHA_KEY',
    'PAGE_URL',
    'GOOGLE_KEY',
);

$captcha = $recaptcha->init();
var_dump($captcha);