Download the PHP package midium/l5-stomp-queue without Composer
On this page you can find all versions of the php package midium/l5-stomp-queue. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package l5-stomp-queue
l5-stomp-queue
STOMP Queue and Broadcaster Driver for Laravel 5. This is a fork if the original one from here. The only change is the support for latest Laravel versions.
Installation
In order to install l5-stomp-queue, just add
to your composer.json. Then run composer install
or composer update
.
Add the Service Provider to the providers
array in config/app.php
:
And add the driver configuration to the connections
array in config/queue.php
:
And for the broadcaster add the same configuration to the connections
array in config/broadcasting.php
:
Configuration Options
queue
The name of the queue.
system
The name of the system that implements the Stomp protocol. Default: null
.
This value is used for setting custom headers (not defined in the protocol). In the case of ActiveMQ, it will set the
AMQ_SCHEDULED_DELAY
(see docs)
header in order to give support for the later
method, defined at Illuminate\Contracts\Queue
.
sync
Whether the driver should be synchronous or not when sending messages. Default: false
.
prefetchSize
The number of messages that will be streamed to the consumer at any point in time. Applicable only to ActiveMQ. Default: 1
.
For more information see the ActiveMQ documentation.
clientId
Used for durable topic subscriptions. It will set the activemq.subcriptionName
property. See documentation
for more information.
username
and password
Used for connecting to the Stomp server.
All versions of l5-stomp-queue with dependencies
illuminate/support Version 5.0.x|5.1.x
illuminate/console Version 5.0.x|5.1.x
illuminate/queue Version 5.0.x|5.1.x
illuminate/broadcasting Version 5.0.x|5.1.x
symfony/process Version ~2.6
fusesource/stomp-php Version 2.0.*