当我尝试使用此命令更新架构时:
php app/console doctrine:schema:update --force
我收到这些错误:
C:\xampp\htdocs\jobeet>php app/console doctrine:schema:update --force
Warning: require_once(C:\xampp\htdocs\jobeet\app/bootstrap.php.cache): failed to
open stream: No such file or directory in C:\xampp\htdocs\jobeet\app\console on
line 10
Fatal error: require_once(): Failed opening required 'C:\xampp\htdocs\jobeet\app
/bootstrap.php.cache' (include_path='.;C:\xampp\php\PEAR') in C:\xampp\htdocs\jo
beet\app\console on line 10
你能帮帮我吗?为什么我得到这个?
谢谢!
答案 0 :(得分:1)
我认为作曲家安装会创建丢失的文件:
php composer.phar install
然后您将能够再次运行该命令
php app/console doctrine:schema:update --force