sknny/yii2-recaptcha-widget

A Yii2 widget for integrating Google reCAPTCHA.

dev-main 2025-01-09 18:53 UTC

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
  1. Add the component to your configuration:

    'components' => [
        'recaptcha' => [
            'class' => 'app\\components\\Recaptcha',
            'siteKey' => 'siteKey',
            'secretKey' => 'secretKey',
        ],
    ],
  2. Use the widget in your view:

    <?= app\widgets\RecaptchaWidget::widget(); ?>