我正在尝试在生产服务器上的项目上运行composer update
并且我一直收到此错误:
Loading composer repositories with package information
Updating dependencies (including require-dev)
Nothing to install or update
Generating autoload files
> Illuminate\Foundation\ComposerScripts::postUpdate
> php artisan optimize
[ReflectionException]
Class App\Console\Commands\BlockModelsDidNotShowUp does not exist
Script php artisan optimize handling the post-update-cmd event returned with error code 1
在此之前,由于/storage/logs/laravel.log file
我的权限被拒绝错误 - 我已更新该文件的权限,并且我不断从上面收到错误。
我已尝试this,但我没有bootstrap/cache/compiled.php
档。
答案 0 :(得分:1)
如果您删除了此类,只需使用以下命令清除缓存:
php artisan clear-compiled
或手动删除bootstrap/cache/services.php
文件。