Skip to content

Commit 4c74bac

Browse files
committed
remove mentions to Symfony2
1 parent a4d6758 commit 4c74bac

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
The RabbitMqBundle incorporates messaging in your application via [RabbitMQ](http://www.rabbitmq.com/) using the [php-amqplib](http://github.com/php-amqplib/php-amqplib) library.
66

7-
The bundle implements several messaging patterns as seen on the [Thumper](https://github.com/php-amqplib/Thumper) library. Therefore publishing messages to RabbitMQ from a Symfony2 controller is as easy as:
7+
The bundle implements several messaging patterns as seen on the [Thumper](https://github.com/php-amqplib/Thumper) library. Therefore publishing messages to RabbitMQ from a Symfony controller is as easy as:
88

99
```php
1010
$msg = array('user_id' => 1235, 'image_path' => '/path/to/new/pic.png');
@@ -346,7 +346,7 @@ class UploadPictureConsumer implements ConsumerInterface
346346
347347
As you can see, this is as simple as implementing one method: __ConsumerInterface::execute__.
348348
349-
Keep in mind that your callbacks _need to be registered_ as normal Symfony2 services. There you can inject the service container, the database service, the Symfony logger, and so on.
349+
Keep in mind that your callbacks _need to be registered_ as normal Symfony services. There you can inject the service container, the database service, the Symfony logger, and so on.
350350
351351
See [https://github.com/php-amqplib/php-amqplib/blob/master/doc/AMQPMessage.md](https://github.com/php-amqplib/php-amqplib/blob/master/doc/AMQPMessage.md) for more details of what's part of a message instance.
352352
@@ -380,7 +380,7 @@ If you would like you can also treat logging from queues with different handlers
380380
381381
### RPC or Reply/Response ###
382382
383-
So far we just have sent messages to consumers, but what if we want to get a reply from them? To achieve this we have to implement RPC calls into our application. This bundle makes it pretty easy to achieve such things with Symfony2.
383+
So far we just have sent messages to consumers, but what if we want to get a reply from them? To achieve this we have to implement RPC calls into our application. This bundle makes it pretty easy to achieve such things with Symfony.
384384
385385
Let's add a RPC client and server into the configuration:
386386

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "php-amqplib/rabbitmq-bundle",
33
"type": "symfony-bundle",
4-
"description": "Integrates php-amqplib with Symfony2 and RabbitMq. Formerly oldsound/rabbitmq-bundle.",
4+
"description": "Integrates php-amqplib with Symfony2|3 and RabbitMq. Formerly oldsound/rabbitmq-bundle.",
55
"keywords": ["symfony2", "rabbitmq", "message", "queue", "amqp"],
66
"license": "MIT",
77
"authors": [{

0 commit comments

Comments
 (0)