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
pkg:composer/hyman-ren/yii2-captcha
Requires
- yiisoft/yii2: *
This package is auto-updated.
Last update: 2025-10-14 06:05:52 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,
],
];
}