a7e6j2 / yii2-rest-api-captcha
The captcha image generator for restful api
2.1
2018-09-05 15:03 UTC
Requires
- php: >=7.1
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2025-03-22 16:35:24 UTC
README
Simple captcha image generator for restful api 22
Installation
Recommended installation via composer:
composer require a7e6j2/yii2-rest-api-captcha
Usage
Generate captcha code (image/png;base64):
(new CaptchaHelper())->generateImage();
Use in HTML:
<img src="<?= (new CaptchaHelper())->generateImage() ?>" />
Verify POST method captcha code:
(new CaptchaHelper())->verify(\Yii::$app->request->post('code'));