我有一个为Symfony 2.0编写的应用程序,我已经开始将它迁移到Symfony 2.1中。我已经成功地使用composer安装了所有依赖项,但脚本失败了......
Script Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::buildBootstrap handling the post-update-cmd event terminated with an exception
[RuntimeException]
An error occurred when generating the bootstrap file.
有任何线索吗?我完全迷失了,而且我用谷歌搜索了它,但我只是在论坛上发现了一个帖子,其中的人和我有同样的问题......
答案 0 :(得分:5)
问题在于the manual is not clear。它告诉您在告知需要替换symfony标准文件之前执行composer.phar install
。
所以现在你必须替换
AppKernel.php
,AppCache.php
和autoload.php
(并删除奇数文件)并使用给定的提示更新您的config.yml
文件。