Skip to content

guchangsheng/defender_captcha

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages