hyman-ren/yii2-captcha

The My diy captcha for the Yii framework 2.0

Installs: 14

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 1

Type:yii2-extension

0.1.0 2017-03-31 17:59 UTC

This package is auto-updated.

Last update: 2025-05-14 05:14:56 UTC


README

This is My diy captcha for the Yii framework 2.0 我自己定制的Yii2.0验证码

install 安装

composer require hyman-ren/yii2-captcha

demo

    public function actions()
    {
        return [
            'captcha' => [
                'class' => 'hyman\captcha\MyCaptchaAction',
                'fixedVerifyCode' => null,
                'height' => 40,
                'width' => 100,
                'padding' => 5,
                'minLength' => 4,
                'maxLength' => 4,
	            'transparent' => false,
            ],
        ];
    }