File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -1268,6 +1268,35 @@ during a request::
1268
1268
:class: `Symfony\\ Bundle\\ FrameworkBundle\\ Test\\ KernelTestCase `
1269
1269
or :class: `Symfony\\ Bundle\\ FrameworkBundle\\ Test\\ WebTestCase `.
1270
1270
1271
+ Amazon SQS
1272
+ ~~~~~~~~~~
1273
+
1274
+ .. versionadded :: 5.1
1275
+
1276
+ The Amazon SQS transport has been added in Symfony 5.1
1277
+ Install it by running:
1278
+
1279
+ .. code-block :: terminal
1280
+
1281
+ $ composer require symfony/amazon-sqs-messenger
1282
+
1283
+ The ``SQS `` transport configuration looks like this:
1284
+
1285
+ .. code-block :: bash
1286
+
1287
+ # .env
1288
+ MESSENGER_TRANSPORT_DSN=sqs://guest:guest@sqs.eu-west-3.amazonaws.com/test? region=eu-west-3
1289
+
1290
+
1291
+ .. note ::
1292
+
1293
+ By default, the transport will automatically create queue that are needed. That can be disabled.
1294
+
1295
+ The transport has a number of other options, including ways to configure
1296
+ the exchange, queues binding keys and more. See the documentation on
1297
+ :class: `Symfony\\ Component\\ Messenger\\ Transport\\ AmazonSqs\\ Connection `.
1298
+
1299
+
1271
1300
Serializing Messages
1272
1301
~~~~~~~~~~~~~~~~~~~~
1273
1302
You can’t perform that action at this time.
0 commit comments