我在Laravel 5.1中有一个项目,我更新了作曲家,在它更新后立即出现了以下错误:
> php artisan clear-compiled
[ReflectionException]
Class Illuminate\Support\Composer does not exist
Script php artisan clear-compiled handling the post-update-cmd event returned with error code 1
我在互联网上找到的所有信息都是Laravel 5.2,我的是Laravel 5.1。
我必须提到所有php artisan
命令都不起作用,返回相同的错误。
为什么会发生这种情况,我该如何解决?
答案 0 :(得分:4)
运行composer update --no-scripts
以删除不存在的包。