将Symfony2 2.3升级到2.4:更改composer.json

时间:2014-01-14 21:07:01

标签: php symfony composer-php

我想将项目从Symfony 2.3升级到2.4。我已经知道2.4版本与2.3具有向后兼容性,只需要更新de components版本。

这是我的composer.json:

{
    "name" : "symfony/framework-standard-edition",
    "description" : "The \"Symfony Standard Edition\" distribution",
    "type" : "project",
    "license" : [
            "MIT"
    ],
    "require" : {
            "symfony/symfony" : "2.3.*",
            "doctrine/doctrine-fixtures-bundle" : "dev-master",
            "symfony/swiftmailer-bundle" : "2.3.*",
            "doctrine/orm" : ">=2.2.3,<2.4-dev",
            "doctrine/data-fixtures" : "dev-master",
            "symfony/assetic-bundle" : "2.3.*",
            "incenteev/composer-parameter-handler" : "~2.0",
            "twig/extensions" : "1.0.*",
            "php" : ">=5.3.3",
            "sensio/generator-bundle" : "2.3.*",
            "symfony/monolog-bundle" : "2.4.*",
            "sensio/framework-extra-bundle" : "2.3.*",
            "doctrine/doctrine-bundle" : "1.2.*",
            "sensio/distribution-bundle" : "2.3.*",
            "liip/imagine-bundle": "dev-master",
            "egeloen/google-map-bundle": "*"
    },
    "autoload" : {
            "psr-0" : {
                    "" : "src/"
            }
    },
    "minimum-stability" : "stable",
    "config" : {
            "bin-dir" : "bin"
    },
    "scripts" : {
            "post-update-cmd" : [
                    "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
                    "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-install-cmd" : [
                    "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
                    "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
                    "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
                    "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
                    "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
            ]
    },
    "extra" : {
            "branch-alias" : {
                    "dev-master" : "2.3-dev"
            },
            "symfony-web-dir" : "web",
            "symfony-app-dir" : "app",
            "incenteev-parameters" : {
                    "file" : "app/config/parameters.yml"
            }
    }
}

但是当我检查the v2.4 composer.json file与此非常不同时。

我已经尝试更改我的composer.json for 2.4版本,添加我的自定义捆绑包并进行&#34; composer update&#34;,但它没有用。

在我自己的composer.json上更新安装2.4版本的软件包的版本是否足够?

感谢。

2 个答案:

答案 0 :(得分:4)

你看错了composer.json。试试这个: https://github.com/symfony/symfony-standard/blob/2.4/composer.json

说明: symfony/symfony存储库本身就是框架 - 但您不想克隆框架,只依赖它。这就是为什么你宁愿使用symfony/symfony-standard存储库,它基本上是依赖于Symfony框架的项目的模板。和你一样。

答案 1 :(得分:2)

新的Symfony 2.4 composer.json文件是下一个:

{
    "name": "symfony/framework-standard-edition",
    "license": "MIT",
    "type": "project",
    "description": "The \"Symfony Standard Edition\" distribution",
    "autoload": {
        "psr-0": { "": "src/" }
    },
    "require": {
        "php": ">=5.3.3",
        "symfony/symfony": "~2.4",
        "doctrine/orm": "~2.2,>=2.2.3",
        "doctrine/doctrine-bundle": "~1.2",
        "twig/extensions": "~1.0",
        "symfony/assetic-bundle": "~2.3",
        "symfony/swiftmailer-bundle": "~2.3",
        "symfony/monolog-bundle": "~2.4",
        "sensio/distribution-bundle": "~2.3",
        "sensio/framework-extra-bundle": "~2.3",
        "sensio/generator-bundle": "~2.3",
        "incenteev/composer-parameter-handler": "~2.0"
    },
    "scripts": {
        "post-install-cmd": [
            "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
            "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": [
            "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
        ]
    },
    "config": {
        "bin-dir": "bin"
    },
    "minimum-stability": "beta",
    "extra": {
        "symfony-app-dir": "app",
        "symfony-web-dir": "web",
        "incenteev-parameters": {
            "file": "app/config/parameters.yml"
        },
        "branch-alias": {
            "dev-master": "2.4-dev"
        }
    }
}

将您在项目中使用的 require 部分中的第三方库与v 2.4中的第三方库进行比较。如果您在新版本中没有使用任何遗漏的库,则可以更新。但是之前要创建一个备份。