Home >Backend Development >PHP Tutorial >lumen 是如何引用外部包的 ?

lumen 是如何引用外部包的 ?

WBOY
WBOYOriginal
2016-06-06 20:06:561735browse

项目有个需求
登录的时候 需要验证码
那么找到了mewebstudio/captcha 插件
https://github.com/mewebstudio/captcha for laravel5
在安装完之后
发现需要php artisan vendor:publish 这个命令 但是lumen里没有vendor
不知道是不是这样的原因 导致我不能用。。

另外在laravel5.1里直接下载完执行php artisan vendor:publish
github上的demo就可以用了 lumen里不行.
所以我把mewebstudio/captcha里面的captcha.php文件复制到

lumen 是如何引用外部包的 ?

里和laravel一样 还是不能用
报错:
lumen 是如何引用外部包的 ?

demo里的

<code>  $form .= '<input type="hidden" name="_token" value="' . csrf_token() . '">';</code>

这句话注释掉就可以执行了 但是也没有意义了.


另外lumen里默认没开启Facade 我开启Facade之后又发现里面没有Request 和 Input门面 又手动注册两个门面方法到Application.php 这个文件。。

回复内容:

项目有个需求
登录的时候 需要验证码
那么找到了mewebstudio/captcha 插件
https://github.com/mewebstudio/captcha for laravel5
在安装完之后
发现需要php artisan vendor:publish 这个命令 但是lumen里没有vendor
不知道是不是这样的原因 导致我不能用。。

另外在laravel5.1里直接下载完执行php artisan vendor:publish
github上的demo就可以用了 lumen里不行.
所以我把mewebstudio/captcha里面的captcha.php文件复制到

lumen 是如何引用外部包的 ?

里和laravel一样 还是不能用
报错:
lumen 是如何引用外部包的 ?

demo里的

<code>  $form .= '<input type="hidden" name="_token" value="' . csrf_token() . '">';</code>

这句话注释掉就可以执行了 但是也没有意义了.


另外lumen里默认没开启Facade 我开启Facade之后又发现里面没有Request 和 Input门面 又手动注册两个门面方法到Application.php 这个文件。。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn