defender/captcha-lumen

dev-master 2021-06-02 03:27 UTC

This package is auto-updated.

Last update: 2024-03-29 02:56:05 UTC


README

Captcha for Lumen 兼容支持lumen 5.5

基于 Captcha for Laravel 5lumen-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

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']);

});

Links