作曲家更新后出错

时间:2017-03-01 13:59:02

标签: symfony composer-php swiftmailer symfony-2.7

我最近在我的Symfony应用程序(2.7)上进行了作曲家更新。自从我做了这个更新后,swiftmailer从2.4变为2.5,在命令之后,控制台向我显示了这个错误: [RuntimeException的]

执行"'缓存时出错:clear --no-warmup'"命令:

[Symfony\Component\DependencyInjection\Exception\InvalidArgumentException]

Unable to replace alias "swiftmailer.mailer.default.transport.real" with actual definition "mail".

[Symfony\Component\DependencyInjection\Exception\ServiceNotFoundException]

You have requested a non-existent service "mail".

我试图删除" vendor"中的swiftmailer目录,但它没有用。 这是我的composer.json:

{
"name": "symfony/framework-standard-edition",
"license": "MIT",
"type": "project",
"description": "The \"Symfony Standard Edition\" distribution",
"autoload": {
    "psr-4": { "": "src/" }
},
"require": {
    "php": ">=5.3.9",
    "symfony/symfony": "2.7.*",
    "doctrine/orm": "^2.4.8",
    "doctrine/doctrine-bundle": "~1.4",
    "symfony/assetic-bundle": "~2.3",
    "symfony/swiftmailer-bundle": "~2.3",
    "symfony/monolog-bundle": "~2.4",
    "sensio/distribution-bundle": "~4.0",
    "sensio/framework-extra-bundle": "^3.0.2",
    "incenteev/composer-parameter-handler": "~2.0",
    "friendsofsymfony/user-bundle": "dev-master"
},
"require-dev": {
    "sensio/generator-bundle": "~2.3",
    "symfony/phpunit-bridge": "~2.7"
},
"scripts": {
    "symfony-scripts": [
        "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",
        "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
    ],
    "post-install-cmd": [
        "@symfony-scripts"
    ],
    "post-update-cmd": [
        "@symfony-scripts"
    ]
},
"config": {
    "bin-dir": "bin",
    "platform": {
        "php": "7.0"
    }
},
"extra": {
    "symfony-app-dir": "app",
    "symfony-web-dir": "web",
    "symfony-assets-install": "relative",
    "incenteev-parameters": {
        "file": "app/config/parameters.yml"
    },
    "branch-alias": {
        "dev-master": "2.7-dev"
    }
}

}

提前感谢您的帮助。

2 个答案:

答案 0 :(得分:1)

这一直是今天发生的事情。 (我在Symfony 2.8.17上。)将Swiftmailer软件包恢复到版本2.4,为我修复了这个问题。

composer.json 文件更改

"symfony/swiftmailer-bundle": "~2.3",

"symfony/swiftmailer-bundle": "2.4",

现在做一个作曲家更新,所以你回到Swiftmailer包的2.4版本,一切都应该很好。看起来2.5更新中存在错误。

-

如果您仍然遇到问题,请尝试使用以下命令完全清除缓存:

rm -rf app/cache/*
rm app/bootstrap.php.cache

同时检查 composer.lock 文件,确保Swiftmailer软件包确实已恢复为2.4。你应该看到这样一个部分:

    {
        "name": "symfony/swiftmailer-bundle",
        "version": "v2.4.2",
        "source": {
            "type": "git",
            "url": "https://github.com/symfony/swiftmailer-bundle.git",
            "reference": "ad751095576ce0c12a284e30e3fff80c91f27225"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/symfony/swiftmailer-bundle/zipball/ad751095576ce0c12a284e30e3fff80c91f27225",
            "reference": "ad751095576ce0c12a284e30e3fff80c91f27225",
            "shasum": ""
        },
        "require": {
            "php": ">=5.3.2",
            "swiftmailer/swiftmailer": ">=4.2.0,~5.0",
            "symfony/config": "~2.7|~3.0",
            "symfony/dependency-injection": "~2.7|~3.0",
            "symfony/http-kernel": "~2.7|~3.0"
        },
        "require-dev": {
            "symfony/console": "~2.7|~3.0",
            "symfony/framework-bundle": "~2.7|~3.0",
            "symfony/phpunit-bridge": "~2.7|~3.0",
            "symfony/yaml": "~2.7|~3.0"
        },
        "suggest": {
            "psr/log": "Allows logging"
        },
        "type": "symfony-bundle",
        "extra": {
            "branch-alias": {
                "dev-master": "2.4-dev"
            }
        },
        "autoload": {
            "psr-4": {
                "Symfony\\Bundle\\SwiftmailerBundle\\": ""
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "MIT"
        ],
        "authors": [
            {
                "name": "Symfony Community",
                "homepage": "http://symfony.com/contributors"
            },
            {
                "name": "Fabien Potencier",
                "email": "fabien@symfony.com"
            }
        ],
        "description": "Symfony SwiftmailerBundle",
        "homepage": "http://symfony.com",
        "time": "2016-12-20T04:44:33+00:00"
    },

答案 1 :(得分:1)

您所描述的问题很可能不是由错误引起的,而是由相关的依赖关系更改为swiftmailer/swiftmailer

You have requested a non-existent service "mail".表示缺少服务mailUnable to replace alias "swiftmailer.mailer.default.transport.real" with actual definition "mail".是一个广泛暗示,这与swfitmailer transport mail,类Swift_Transport_MailTransport有关insecure php mail() function。出于安全原因,此传输为deprecated since swiftmailer version 5.4.5

要解决此问题,您需要

  • 从传输mail切换到当前swiftmailer支持的传输,或
  • "swiftmailer/swiftmailer": "<6.0"添加到您的composer.json依赖项中,以防止软件包在Swift_Transport_MailTransport消失的情况下安装swiftmailer v6.x。不幸的是,symfony/swiftmailer-bundle从v3.0.0开始需要swiftmailer v6.x,因此您需要"symfony/swiftmailer-bundle": "^2"
相关问题