Download the PHP package websvc/yii2-recaptcha-widget without Composer
On this page you can find all versions of the php package websvc/yii2-recaptcha-widget. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package yii2-recaptcha-widget
Google reCAPTCHA widget for Yii2
Based on Google reCaptcha API 2.0 and 3.0.
NOTE: This is a fork of https://github.com/himiklab/yii2-recaptcha-widget @v2.1.1
The original project seems stalled, and there's some issues that needed some attention, hence the fork
Any versions released from this repo should follow the following mask for tags 2.1.1.x
If there are any updates upstream it should be able to accommodate those changes and cope with upstream versions.
[]() [
]() [
]()
Upgrade to 2.x version
Warning! Classes ReCaptcha
and ReCaptchaValidator
is deprecated. Please replace their to ReCaptchaConfig
,
ReCaptcha2
and ReCaptchaValidator2
.
Installation
The preferred way to install this extension is through composer.
- Either run
or add
to the require
section of your application's composer.json
file.
- Configure the component in your configuration file (web.php). The parameters siteKey and secret are optional. But if you leave them out you need to set them in every validation rule and every view where you want to use this widget. If a siteKey or secret is set in an individual view or validation rule that would overrule what is set in the config.
or use DI container:
- Add
ReCaptchaValidator2
orReCaptchaValidator3
in your model, for example:
v2
v3
Usage
For example:
v2
v3
or
v2
v3
- NOTE: Please disable ajax validation for ReCaptcha field!