0

I'm working on a Symfony project and would like to know why whenever I run the following command in terminal php bin/console server:run it would be immediately followed by this one composer require symfony/mailer. This is a screenshot of terminal:

enter image description here

Moreover, this is what I get as an output on http://127.0.0.1:8000/:

enter image description here

You can notice that the command text "composer require symfony/mailer" shows at the top of the page.

So, how can I handle that? Any idea?

P.S:

  • Symfony version: 4.4
  • PHP version: 8.0.12
  • IDE: PhpStorm
Nadim
  • 382
  • 1
  • 7
  • 29
  • 2
    In PHPStorm, go to Edit -> Find -> Find in Files, and search for `composer require symfony/mailer`. It sounds like it's been added to a file somewhere – aynber Dec 02 '21 at 13:00
  • Bunch of thanks! I've found it in the bundle.php file. – Nadim Dec 02 '21 at 13:16

1 Answers1

0

The issue is finally resolved! Making a search for composer require symfony/mailer (by going to "Edit"->"Find"->"Find in Files" in PhpStorm), I found it added somehow in the bundles.php file.

Nadim
  • 382
  • 1
  • 7
  • 29