An extension for resolving captcha with Rucaptcha.com. It's just a wrapped gladyshev\rucaptcha-client library.
Rucaptcha API documentation is at official page.
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist gladyshev/yii2-rucaptcha
or add
"gladyshev/yii2-rucaptcha": "*"
to the require
section of your composer.json
file.
Setup rucaptcha
component in your configuration file:
...
'components' => [
...
'rucaptcha' => [
'class' => 'gladyshev\yii\rucaptcha\Rucaptcha',
'apiKey' => getenv('__RUCAPTCHA_KEY__'),
'options' => [
'verbose' => (YII_DEBUG === true)
]
],
...
],
...
Recognize file or url:
$captchaText = Yii::$app->rucaptcha->recognizeFile('http://example.com/image.jpg');
Comments