Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/warifp/nd-captcha
API module integration from 2Captcha.
https://github.com/warifp/nd-captcha
2captcha 2captcha-api bypass-captcha captcha captcha-solver captcha-solving
Last synced: about 1 month ago
JSON representation
API module integration from 2Captcha.
- Host: GitHub
- URL: https://github.com/warifp/nd-captcha
- Owner: warifp
- Created: 2021-07-23T16:30:24.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-07-23T17:56:17.000Z (over 3 years ago)
- Last Synced: 2024-09-18T13:50:56.209Z (about 2 months ago)
- Topics: 2captcha, 2captcha-api, bypass-captcha, captcha, captcha-solver, captcha-solving
- Language: PHP
- Homepage:
- Size: 152 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NdCaptcha: 2Captcha
[![](https://img.shields.io/github/release/warifp/nd-captcha.svg?style=flat-square&sort=semver)](https://github.com/warifp/nd-captcha/releases/)
[![](https://img.shields.io/packagist/dt/warifp/nd-captcha.svg?style=flat-square)](https://github.com/warifp/nd-captcha/releases/)API module integration from [2Captcha](https://2captcha.com).
### 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](https://github.com/warifp/nd-captcha/tree/master/examples).
```php
require __DIR__ . '/vendor/autoload.php';use NdCaptcha\NdCaptcha;
$recaptcha = new NdCaptcha(
'2CAPTCHA_KEY',
'PAGE_URL',
'GOOGLE_KEY',
);$captcha = $recaptcha->init();
var_dump($captcha);
```