无法扫描/ IlluminateQueueClosure.php中的类

div*_*r11 5 php laravel laravel-4

每当我尝试composer update或删除供应商目录+ composer install我收到此错误消息:

 [RuntimeException]
      Could not scan for classes inside "C:\Users\Mateusz\Documents\NetBeansProje
      cts\projectname\trunk\newproject\vendor/symfony/finder/Symfony/Component/Find
      er/src/Illuminate/Queue/IlluminateQueueClosure.php" which does not appear t
      o be a file nor a folder
Run Code Online (Sandbox Code Playgroud)

好吧,实际上我根本没有这个文件.在/Finder目录里面没有/src.有人可以建议我现在该做什么吗?

我几乎开始编程,所以老实说听起来像魔术一样.我在一个更大的项目上工作,他们只是告诉我更新我的项目和作曲家,但作曲家更新给了我这个错误.

Sof*_*adi 3

这似乎是旧版本作曲家的一个错误...
尝试使用以下命令更新作曲家:

composer self-update
Run Code Online (Sandbox Code Playgroud)

然后删除根项目文件夹目录中的“composer.lock”文件,并通过运行以下命令清除作曲家缓存:

composer clear-cache
Run Code Online (Sandbox Code Playgroud)

然后重新运行:

composer install
Run Code Online (Sandbox Code Playgroud)