PHP Captcha Solver: Bypass reCAPTCHA, Cloudflare, hCaptcha, Amazon and more
v1.0.0 - First Stable Major Release
We're thrilled to announce the first stable major release of the SolveCaptcha PHP SDK, your go-to PHP captcha solver and captcha bypass API library.
This release brings rock-solid support for the most popular captcha types and seamless integration into any PHP project:
- reCAPTCHA v2 & v3 solver
- hCaptcha solver
- FriendlyCaptcha, FunCaptcha & Geetest V4
- Cloudflare Turnstile & Amazon WAF
- Audio captcha handling
- Easy PSR-4 autoloading for PHP >= 7.3
Key Improvements
- Simplified API integration: one-line installation with Composer
- Robust error handling and retry logic for high-volume captcha solving
- Flexible timeout and concurrency settings for performance tuning
- Comprehensive test suite powered by PHPUnit 9.6.*
Installation
composer require solvercaptcha/solvecaptcha-php
Quick Usage Example
use SolveCaptcha\Solver;
$solver = new Solver('YOUR_API_KEY');
$response = $solver->solveRecaptchaV2('SITE_KEY', 'https://example.com');
echo $response->getSolution();
For full documentation and advanced usage README.md
Full Changelog: https://github.com/solvercaptcha/solvecaptcha-php/commits/v1.0.0