首页 文章

laravel 5.3与ide-helper相关的作曲家更新错误

提问于
浏览
-1

post-update-cmd:Illuminate \ Foundation \ ComposerScripts :: postUpdate post-update-cmd:php artisan ide-helper:generate执行命令(CWD):php artisan ide-helper:generate [Symfony \ Component \ Debug \ Exception \ FatalThrowableError]调用未定义的方法Illuminate \ Database \ Connection :: resolverFor()

脚本php artisan ide-helper:生成处理返回的post-update-cmd事件,错误代码为1

1 回答

  • 1

    尝试在cmd中使用此命令以更快地安装或更新编写器

    // unix
    php -m | grep xdebug
    // windows
    php -m | findstr xdebug
    
    composer install --prefer-dist -vvv --profile
    
    composer update --prefer-dist -vvv --profile
    

相关问题