Skip to content

Commit 005df15

Browse files
author
John Kelly
committed
Update composer and readme to new package org
1 parent 119c60d commit 005df15

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
1-
# Looking for New Maintainer #
2-
3-
See issue: https://github.com/videlalvaro/RabbitMqBundle/issues/327
4-
51
# RabbitMqBundle #
62

73
## About ##
84

9-
The RabbitMqBundle incorporates messaging in your application via [RabbitMQ](http://www.rabbitmq.com/) using the [php-amqplib](http://github.com/videlalvaro/php-amqplib) library.
5+
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.
106

117
The bundle implements several messaging patterns as seen on the [Thumper](https://github.com/videlalvaro/Thumper) library. Therefore publishing messages to RabbitMQ from a Symfony2 controller is as easy as:
128

@@ -25,7 +21,7 @@ All the examples expect a running RabbitMQ server.
2521

2622
This bundle was presented at [Symfony Live Paris 2011](http://www.symfony-live.com/paris/schedule#session-av1) conference. See the slides [here](http://www.slideshare.net/old_sound/theres-a-rabbit-on-my-symfony).
2723

28-
[![Build Status](https://secure.travis-ci.org/videlalvaro/RabbitMqBundle.png?branch=master)](http://travis-ci.org/videlalvaro/RabbitMqBundle)
24+
[![Build Status](https://secure.travis-ci.org/php-amqplib/RabbitMqBundle.png?branch=master)](http://travis-ci.org/php-amqplib/RabbitMqBundle)
2925

3026
## Installation ##
3127

@@ -34,7 +30,7 @@ This bundle was presented at [Symfony Live Paris 2011](http://www.symfony-live.c
3430
Require the bundle and its dependencies with composer:
3531

3632
```bash
37-
$ composer require oldsound/rabbitmq-bundle
33+
$ composer require php-amqplib/rabbitmq-bundle
3834
```
3935

4036
Register the bundle:
@@ -352,7 +348,7 @@ As you can see, this is as simple as implementing one method: __ConsumerInterfac
352348
353349
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.
354350
355-
See [https://github.com/videlalvaro/php-amqplib/blob/master/doc/AMQPMessage.md](https://github.com/videlalvaro/php-amqplib/blob/master/doc/AMQPMessage.md) for more details of what's part of a message instance.
351+
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.
356352
357353
### Recap ###
358354

composer.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
2-
"name": "oldsound/rabbitmq-bundle",
3-
"description": "Integrates php-amqplib with Symfony2 and RabbitMq",
2+
"name": "php-amqplib/rabbitmq-bundle",
3+
"replace": {
4+
"oldsound/rabbitmq-bundle": "self.version"
5+
},
6+
"description": "Formerly oldsound/rabbitmq-bundle. Integrates php-amqplib with Symfony2 and RabbitMq",
47
"keywords": ["symfony2", "rabbitmq", "message", "queue", "amqp"],
58
"type": "symfony-bundle",
69
"license": "MIT",

0 commit comments

Comments
 (0)