0

I need to implement sending messages to the queue rabbitmq(amqp) from ZF2.

I did not find the module in ZF2 to work with a queue.

It was decided to expand adapter of ZendQueue. (Maybe somebody knows another way)

I tried to install ZendQueue at help composer, but composer is fail, because his have

"require": {
    "php": ">=5.3.3",
    "zendframework/zend-stdlib": "2.0.*"
},

My version ZF2 is 2.1.5

Used composer command for installed:

php composer.phar require zendframework/zend-queue:dev-develop
Martijn Pieters
  • 889,049
  • 245
  • 3,507
  • 2,997
St_5
  • 303
  • 3
  • 12

2 Answers2

0

In your composer.json

"require": {
    "php": ">=5.3.3",
    "zendframework/zend-stdlib": "2.0.*",
    "zendframework/zend-queue": "dev-master"
},
"minimum-stability": "dev",
Remi Thomas
  • 1,538
  • 1
  • 15
  • 25
0

For today it is already fixed in repo

St_5
  • 303
  • 3
  • 12