我最近在我的Symfony应用程序(2.7)上做了一个作曲家更新。自从我进行了此更新以来,swiftmailer 从 2.4 升级到 2.5,在命令之后,控制台向我显示此错误: [运行时异常]
执行"'cache:clear --no-warmup'"命令时出错:
[SymfonyComponentDependencyInjectionExceptionInvalidArgumentException]
Unable to replace alias "swiftmailer.mailer.default.transport.real" with actual definition "mail".
[SymfonyComponentDependencyInjectionExceptionServiceNotFoundException]
You have requested a non-existent service "mail".
我试图删除"供应商"中的 swiftmailer 目录,但它不起作用。 这是我的作曲家.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"
}
}
}
提前感谢您的帮助。
从今天开始,这肯定一直在发生。(我在Symfony 2.8.17上。将 Swiftmailer 捆绑包恢复到 2.4 版为我解决了这个问题。
在您的作曲家.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"
},
您描述的问题很可能不是由错误引起的,而是由更改为swiftmailer/swiftmailer
的相关依赖项引起的。
You have requested a non-existent service "mail".
说缺少服务mail
,Unable to replace alias "swiftmailer.mailer.default.transport.real" with actual definition "mail".
广泛暗示这与swfitmailer传输mail
有关,该类Swift_Transport_MailTransport
使用不安全的PHPmail()
函数。此传输已弃用,因为 出于安全原因,Swiftmailer 版本 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"