当我尝试更新照明时却失败了。
sudo composer.phar require "illuminate/html":"5.0.*"
它显示错误,
Script php artisan optimize handling the post-update-cmd event returned with an error
Installation failed, reverting ./composer.json to its original content.
[RuntimeException]
Error Output:
请帮帮我。
答案 0 :(得分:0)
Illuminate / Html 已被弃用,您可以看到here。现在这个包的作者说你应该使用 laravelcollective / html
composer require laravelcollective/html
然后在 providers 数组中的 config.app 中:
Collective\Html\HtmlServiceProvider::class,
在同一文件中的别名数组中:
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
希望这有帮助。