我使用cmd窗口更新了Composer并得到了以下错误:
[Symfony\Component\Debug\Exception\FatalErrorException]
Class 'Darryldecode\Cart\CartServiceProvider' not found
Script php artisan clear-compiled handling the pre-update-cmd event returned with an error
[RuntimeException]
Error Output:
该网站尚未上线,我正在使用xampp运行它。 现在,当我试图通过localhost访问我的网站时,我收到了这个错误:
ProviderRepository.php第146行中的FatalErrorException: Class' Darryldecode \ Cart \ CartServiceProvider'没找到。
在app.php文件中我有:
Darryldecode\Cart\CartServiceProvider::class,
在应用服务提供商中,并且:
'Cart' => Darryldecode\Cart\Facades\CartFacade::class,
在别名中。
有关如何恢复网站的任何想法?
谢谢!
答案 0 :(得分:1)
这个步骤 临时删除
Darryldecode\Cart\CartServiceProvider::class,
和
'Cart' => Darryldecode\Cart\Facades\CartFacade::class,
输入命令
composer update
然后添加这个类 因为当您更新作曲家时,他会在添加您的项目之前尝试找到此路径,在更新您的作曲家后,此类已添加到您的文件夹中