麻烦从Symfony 2.3更新到2.4



你好,我有一个非常严重的,而不是逻辑上的麻烦。我正在尝试将我的项目从Symfony2.3更新为2.4版,但是在我运行作曲家更新的那一刻之后,一切都还好,但是就像该项目与更多的人一起使用,并且当某人更多下载下载该项目时,项目这不起作用,在他运行作曲家更新的那一刻,这可以回到2.3。*;

这是我的作曲家:

{
"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.3,<2.4-dev",
    "doctrine/doctrine-bundle": "1.2.*",
    "twig/extensions": "1.0.*",
    "symfony/assetic-bundle": "2.3.*",
    "symfony/swiftmailer-bundle": "2.3.*",
    "symfony/monolog-bundle": "2.3.*",
    "sensio/distribution-bundle": "2.3.*",
    "sensio/framework-extra-bundle": "2.3.*",
    "sensio/generator-bundle": "2.3.*",
    "incenteev/composer-parameter-handler": "~2.0",
    "cedriclombardot/admingenerator-generator-bundle": "2.3.*@dev",
    "propel/propel-bundle": "1.2.*",
    "educoder/pest": "1.0.0",
    "friendsofsymfony/rest-bundle": "0.12.0",
    "jms/serializer-bundle": "dev-master",
    "jms/di-extra-bundle": "dev-master",
    "phpexcel/phpexcel": "1.7.*",
    "laurentbrieu/tcpdf": "dev-master"
},
"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",
    "component-dir": "web/components"
},
"minimum-stability": "dev",
"extra": {
    "symfony-app-dir": "app",
    "symfony-web-dir": "web",
    "incenteev-parameters": {
        "file": "app/config/parameters.yml"
    },
    "branch-alias": {
        "dev-master": "2.3-dev"
    }
}
}

我使用Symfony 2.4.1解决了此问题,我们使用了Symfony 2.4.2-DEV,我不知道我想此版本上有一个错误。

<</p>

相关内容

  • 没有找到相关文章

最新更新