From 5361feee5ef68619b7a42a49b2c4148e4eed529e Mon Sep 17 00:00:00 2001 From: Christophe Deliens Date: Thu, 28 Mar 2019 16:28:06 +0100 Subject: [PATCH] Detailed AMQP dependency Installing the Serializer bundle is not sufficient, you must also have the AMQP PHP extension. Both the Serializer bundle and the AMQP PHP extension are required by the `amqp-pack`. --- messenger.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/messenger.rst b/messenger.rst index c231877d34b..698b375153b 100644 --- a/messenger.rst +++ b/messenger.rst @@ -202,12 +202,12 @@ This will also configure the following services for you: .. note:: - In order to use Symfony's built-in AMQP transport, you will need the Serializer - Component. Ensure that it is installed with: + In order to use Symfony's built-in AMQP transport, you will need the AMQP + PHP extension and the Serializer Component. Ensure that they are installed with: .. code-block:: terminal - $ composer require symfony/serializer-pack + $ composer require symfony/amqp-pack Routing -------