解决Package illuminate/html is abandoned, you should avoid using it. Use laravelcollective/html instead.问题

简介: 解决步骤: 1、分析问题是因为laravel5.1不赞成使用illuminate/html而推荐使用laravelcollective/html包,所以我们利用composer命令移除illuminate/html包再安装laravelcollective/html包 2、进入homestead...

解决步骤:

1、分析问题是因为laravel5.1不赞成使用illuminate/html而推荐使用laravelcollective/html包,所以我们利用composer命令移除illuminate/html包再安装laravelcollective/html包

2、进入homestead虚拟机,移除包illuminate/html,执行命令:

vagrant@homestead:~$ composer remove illuminate/html

3、接着安装laravelcollective/html包,执行命令:

vagrant@homestead:~$ composer require laravelcollective/html

总结:

学会分析问题,解决问题!

参考资料:

http://www.jianshu.com/p/e00d9086aa2d

目录
相关文章
|
SQL 算法
【hacker的错误集】html5lib使用报错Couldn‘t find a tree builder with the features you requested: html5lib
分析得出:bs4的特征没有找到:找不到具有您请求功能的树生成器:html5lib。您需要安装解析器库吗?
426 0
【hacker的错误集】html5lib使用报错Couldn‘t find a tree builder with the features you requested: html5lib
|
7月前
解决ERROR in Conflict: Multiple assets emit different content to the same filename index.html 的问题
解决ERROR in Conflict: Multiple assets emit different content to the same filename index.html 的问题
619 0
报错 An error happened during template parsing (template: “ServletContext resource [/shiroTest.html]“)
报错 An error happened during template parsing (template: “ServletContext resource [/shiroTest.html]“)
sublime 打开报错 Error loading syntax file “Packages/HTML/HTML.sublime-syntax“: Apparent recursion withi
卸载步骤 打开sublime工具,按shift+command+p,打开输入框 输入remove package 输入 JavaScriptNext-ES6 Syntax,找到此插件,选中,enter卸载 重启sublime,弹出框消失
578 0
|
Python
解决报错:jinja2.exceptions.TemplateNotFound: index.html
一、问题描述 (1)首先写了一个简单的登录账号密码的页面:
1307 0
解决报错:jinja2.exceptions.TemplateNotFound: index.html
|
Spring Java 安全
Refused to execute script from 'http://127.0.0.1:8004/login' because its MIME type ('text/html') ...
Refused to execute script from 'http://127.0.0.1:8004/login' because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled. Refused to execute script …”,为什么会被拒绝执行呢?想到可能是权限的控制问题,亦即是 Spring Security 的静态资源访问配置问题。
3084 0