defender / captcha-lumen
captcha for lumen
dev-master
2021-06-02 03:27 UTC
Requires
- php: >=5.4
- ext-gd: *
- illuminate/config: ~5.0
- illuminate/filesystem: ~5.0
- illuminate/hashing: ~5.0
- illuminate/support: ~5.0
- intervention/image: ~2.2
This package is auto-updated.
Last update: 2024-10-29 04:42:14 UTC
README
Captcha for Lumen 兼容支持lumen 5.5
基于 Captcha for Laravel 5 和 lumen-captcha 的修正
#启用cache###env配置如下 CACHE_DRIVER=redis REDIS_HOST=127.0.0.1 REDIS_PORT= REDIS_PASSWORD=
####config配置文件 *拷贝config目录下的captcha.php image.php到那项目config目录
##注册 #bootstrap目录下的app.php添加如下 $app->configure('image'); $app->configure('captcha'); $app->register(Yangbx\CaptchaLumen\CaptchaServiceProvider::class);
Preview
###创建路由
/************/ $api->group(['namespace' => 'Yangbx\CaptchaLumen'],function($api){ //验证码 $api->get('Info/{type}', ['as' => 'captcha', 'uses' => 'LumenCaptchaController@getCaptchaInfo']); $api->get('captcha/{type}/{captchaId}', ['uses' => 'LumenCaptchaController@getCaptcha']);
});