我需要实现从ZF2向队列rabbitmq(amqp)发送消息。
我没有在ZF2中找到使用队列的模块。
决定扩展ZendQueue的适配器。 (也许有人知道另一种方式)
我试图在帮助作曲家处安装ZendQueue,但作曲家失败了,因为他已经
"require": {
"php": ">=5.3.3",
"zendframework/zend-stdlib": "2.0.*"
},
我的ZF2版本是2.1.5
用于已安装的composer命令:
php composer.phar require zendframework/zend-queue:dev-develop
答案 0 :(得分:0)
在你的composer.json
中"require": {
"php": ">=5.3.3",
"zendframework/zend-stdlib": "2.0.*",
"zendframework/zend-queue": "dev-master"
},
"minimum-stability": "dev",
答案 1 :(得分:0)
今天已经在repo中修复了