“php bin/console server:run”在运行时紧接着“composer require symfony/mailer”

问题描述 投票:0回答:1

我正在开发一个 Symfony 项目,想知道为什么每当我在终端

php bin/console server:run
中运行以下命令时,它后面就会立即出现这个
composer require symfony/mailer
。这是终端截图:

enter image description here

此外,这是我在 http://127.0.0.1:8000/:

上得到的输出

enter image description here

您可以注意到命令文本“composer require symfony/mailer”显示在页面顶部。

那么,我该如何处理呢?有什么想法吗?

附言:

  • Symfony 版本:4.4
  • PHP版本:8.0.12
  • IDE:PhpStorm
php terminal command-line symfony4
1个回答
0
投票

问题终于解决了!搜索

composer require symfony/mailer
(通过在 PhpStorm 中转到“编辑”->“查找”->“在文件中查找”),我发现它以某种方式添加到了 bundles.php 文件中。

© www.soinside.com 2019 - 2024. All rights reserved.