美文网首页
[Symfony\\\\Component\\\\Debug\\

[Symfony\\\\Component\\\\Debug\\

作者: yundGo | 来源:发表于2016-11-20 20:28 被阅读0次

用composer安装laravel自带的auth时报错:
[Symfony\Component\Debug\Exception\FatalErrorException]
Call to undefined method Illuminate\Foundation\Application::bindShared()
原因是再这之前安装了 illuminate/html 。但是laravel5.2已经不支持这个东西了。
所以得先卸载
编辑 config/app.php,将以下数组对应的值删掉

providers=>['Illuminate\Html\HtmlServiceProvider']
  aliases =>[
    `'Form'=> 'Illuminate\Html\FormFacade',
     'HTML'=> 'Illuminate\Html\HtmlFacade'
  ]

然后执行删除命令再更新

composer remove illuminate/html
composer update

相关文章

网友评论

      本文标题:[Symfony\\\\Component\\\\Debug\\

      本文链接:https://www.haomeiwen.com/subject/pueypttx.html