sknny / yii2-recaptcha-widget
A Yii2 widget for integrating Google reCAPTCHA.
dev-main
2025-01-09 18:53 UTC
Requires
- php: >=7.4
- yiisoft/yii2: ~2.0
This package is auto-updated.
Last update: 2025-07-09 19:57:46 UTC
README
A simple widget for integrating Google reCAPTCHA into Yii2 projects.
Installation
composer require sknny/yii2-recaptcha-widget
-
Add the component to your configuration:
'components' => [ 'recaptcha' => [ 'class' => 'app\\components\\Recaptcha', 'siteKey' => 'siteKey', 'secretKey' => 'secretKey', ], ],
-
Use the widget in your view:
<?= app\widgets\RecaptchaWidget::widget(); ?>