Symfony从2.1更新到2.2作曲​​家错误

发布时间:2022-04-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了Symfony从2.1更新到2.2作曲​​家错误脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试将我的项目从symfony 2.1更新到2.2.我尝试逐包更新它.当我输入composer.phar update symfony / symfony时,我收到以下错误
PRoblem 1
- Conclusion: don't install symfony/symfony 2.2.x-dev
- Conclusion: don't install symfony/symfony v2.2.0
- Conclusion: don't install symfony/symfony v2.2.0-RC3
- Conclusion: don't install symfony/symfony v2.2.0-RC2
- Installation request for symfony/monoLOG-bundle == 2.1.9999999.9999999-dev -> satisfiable by symfony/monolog-bundle 2.1.x-dev.
- Conclusion: don't install symfony/symfony v2.2.0-RC1
- Conclusion: don't install symfony/symfony v2.2.0-Beta2
- doctrine/doctrine-bundle v1.2.0-beta1 requires symfony/framework-bundle >=2.2.0-beta2,<2.3-dev -> satisfiable by symfony/symfony 2.2.x-dev,symfony/symfony v2.2.0,symfony/symfony v2.2.0-BETA2,symfony/symfony v2.2.0-RC1,symfony/symfony v2.2.0-RC2,symfony/symfony v2.2.0-RC3,symfony/framework-bundle 2.2.x-dev,symfony/framework-bundle v2.2.0,symfony/framework-bundle v2.2.0-BETA2,symfony/framework-bundle v2.2.0-RC1,symfony/framework-bundle v2.2.0-RC2,symfony/framework-bundle v2.2.0-RC3.
- doctrine/doctrine-bundle 1.2.x-dev requires symfony/framework-bundle >=2.2.0-beta2,symfony/framework-bundle v2.2.0-RC3.
- don't install symfony/framework-bundle 2.2.x-dev|don't install symfony/symfony v2.2.0-BETA1
- don't install symfony/framework-bundle v2.2.0|don't install symfony/symfony v2.2.0-BETA1
- don't install symfony/framework-bundle v2.2.0-BETA2|don't install symfony/symfony v2.2.0-BETA1
- don't install symfony/framework-bundle v2.2.0-RC1|don't install symfony/symfony v2.2.0-BETA1
- don't install symfony/framework-bundle v2.2.0-RC2|don't install symfony/symfony v2.2.0-BETA1
- don't install symfony/framework-bundle v2.2.0-RC3|don't install symfony/symfony v2.2.0-BETA1
- Installation request for symfony/symfony 2.2.* -> satisfiable by symfony/symfony 2.2.x-dev,symfony/symfony v2.2.0-BETA1,symfony/symfony v2.2.0-RC3.
- Installation request for doctrine/doctrine-bundle 1.2.* -> satisfiable by doctrine/doctrine-bundle 1.2.x-dev,doctrine/doctrine-bundle v1.2.0-beta1.

我的composer.json:

{
    "name": "symfony/framework-standard-edITion","description": "The \"Symfony Standard Edition\" distribution","autoload": {
        "psr-0": { "": "src/" }
    },"require": {
        "PHP": ">=5.3.3","symfony/symfony": "2.2.*","doctrine/orm": "~2.2,>=2.2.3","doctrine/doctrine-bundle": "1.2.*","twig/extensions": "1.0.*","symfony/assetic-bundle": "2.1.*","symfony/swiftmailer-bundle": "2.2.*","symfony/monolog-bundle": "2.2.*","sensio/distribution-bundle": "2.2.*","sensio/framework-extra-bundle": "2.2.*","sensio/generator-bundle": "2.2.*","jms/security-extra-bundle": "1.4.*","jms/di-extra-bundle": "1.3.*","friendsofsymfony/rest": "0.7.0","friendsofsymfony/rest-bundle": "0.9.0","jms/serializer-bundle": "0.9.0","friendsofsymfony/jsrouting-bundle": "1.0.3","friendsofsymfony/user-bundle": "v1.3.0","knplabs/knp-menu-bundle": "dev-master","knplabs/knp-paginator-bundle": "v2.3","guzzle/guzzle": "dev-master"
    },"scripts": {
        "post-install-cmd": [
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap","Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache","Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets","Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
        ],"post-update-cmd": [
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap","Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
        ]
    },"config": {
        "bin-dir": "bin"
    },"minimum-stability": "dev","extra": {
        "symfony-app-dir": "app","symfony-web-dir": "web","branch-alias": {
            "dev-master": "2.3-dev"
        }
    }
}
您将某些第三方捆绑包锁定到某个标记/版本.
"friendsofsymfony/user-bundle": "v1.3.0",

this bundle only supports Symfony 2.1.*的v1.3.0标签.

您必须浏览每个第三方软件包,并确保使用正确的标签/版本.

上面的行应该是这样的

"friendsofsymfony/user-bundle": "v1.3.1",

您可以在composer.json of the bundle中查看v1.3.1标记的要求.

您也可以使用dev-master标记,但如果您不打算定期升级Symfony,则可能会导致问题.

脚本宝典总结

以上是脚本宝典为你收集整理的Symfony从2.1更新到2.2作曲​​家错误全部内容,希望文章能够帮你解决Symfony从2.1更新到2.2作曲​​家错误所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。