| 12345678910111213141516171819 |
- framework:
- messenger:
- # Uncomment this (and the failed transport below) to send failed messages to this transport for later handling.
- # failure_transport: failed
- transports:
- # https://symfony.com/doc/current/messenger.html#transport-configuration
- async: '%env(MESSENGER_TRANSPORT_DSN)%'
- failed: '%env(MESSENGER_TRANSPORT_DSN)%?queue_name=failed'
- sync: 'sync://'
- routing:
- # Route your messages to the transports
- 'App\Message\Command\MailerCommand': async
- 'App\Message\Command\Parameters\AverageChange': async
- 'App\Message\Command\Export': async
- 'App\Message\Command\Typo3\Typo3UpdateCommand': async
- 'App\Message\Command\Typo3\Typo3DeleteCommand': async
- 'App\Message\Command\Typo3\Typo3UndeleteCommand': async
|