Laravel 未找到“IlluminateFoundationApplication"类
本文介绍了Laravel 未找到“IlluminateFoundationApplication"类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我通过 composer 安装了 Guzzle,但收到了这个错误,
I installed via composer the Guzzle and i received this error,
这之前可以工作,现在我检查了 DIR 路径,一切正常.我还尝试了 composer dump-autoload、composer update、删除 composer.lock 和 vendor、composer install
this was working before, and now i checked the DIR path and it's all ok. I also tried composer dump-autoload, composer update, removing composer.lock and vendor, composer install
推荐答案
删除 vendor 文件夹和 composer.lock.
Delete vendor folder and composer.lock.
之后
作曲家安装
然后
作曲家更新 --no-scripts
试试这个,这将解决你的错误.注意:请确保您拥有 composer.json 中的所有包.
Try this, this will solve your error. Note: Please make sure you have all packages in composer.json.
这篇关于Laravel 未找到“IlluminateFoundationApplication"类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!