amplifier / yii-amqp
AMQP adapter for Yii
Installs: 34 703
Dependents: 1
Suggesters: 0
Security: 0
Stars: 22
Watchers: 9
Forks: 17
Open Issues: 1
Type:yii-extension
Requires
- php: >=5.3.0
- guzzle/guzzle: ~3.7
- videlalvaro/php-amqplib: >=2.0.0
This package is not auto-updated.
Last update: 2024-11-04 14:51:13 UTC
README
YiiAMQP is a fully functional AMQP producer and conusumer Yii application component.
##Requirements
Tested with Yii version 1.1.13
##Quick Start
Install via composer, then configure your application to use this component by adding and updating to match your needs the following configuration
'components' => array( 'mq' => array( 'class' => 'YiiAMQP\Client', 'connection' => array( 'host' => 'localhost', 'port' => '5672', 'vhost' => '/', 'user' => 'guest', 'password' => 'guest' ) ),
##Usage
Producer
$myMessage = array('greeting' => 'Hello World'); Yii::app()->mq->exchanges->greeter->send($myMessage); // will be JSON encoded
Consumer
Initialise the component
Yii::app()->mq->defaultQueue->consume(function($message){ print_r($message); }); Yii::app()->mq->queues->myQueue->consume(function($message){ print_r($message); }); Yii::app()->mq->wait(); // wait for results
##Contributing Please submit all pull requests against *-wip branches. Thanks!
##Bug tracker If you find any bugs, please create an issue at https://github.com/mteichtahl/YiiAMQP/issues
##Credits
- php-amqplib [https://github.com/videlalvaro/php-amqplib] Vadim Zaliva lord@crocodile.org
- rabbitMQ [http://www.rabbitmq.com/] VMWare
##License
MIT.