Skip to content

Releases: ingresse/message-queue-php

Add Support to RPC and Priority

18 May 19:54
ca3a778

Choose a tag to compare

Merge pull request #26 from ingresse/feature/priority-support

add support to send messages with priority and to RPC calls

Exchange configuration

04 Nov 15:50

Choose a tag to compare

The SDK now supports exchange configuration, like the following:

// ...
'queue.exchanges' => [
    'exchange.test' => [                
        'type' => 'fanout'
        'passive' => false,
        'durable' => true,
        'auto_delete' => false,
        'internal' => false,
        'nowait' => false,
        'arguments' => false,
        'ticket' => false,
        'delivery_mode' => 2
    ]
],
// ...

And then, setting in the Publisher

use MessageQueuePHP\Publisher\Publisher;

$myPublisher = new Publisher($amqpAdapter, 'worker.test', 'exchange.test');

Added array with queues config to factory

30 Aug 21:10

Choose a tag to compare

1.6.3

Added array with queues config to factory (#25)

Change adapter factory method to create

30 Aug 20:28

Choose a tag to compare

Change adapter factory method to create (#24)

Change method name from construct to create to be called external

Adjust for AMQP Config for right namespace

Update dependency monolog version

30 Aug 20:00

Choose a tag to compare

1.6.1

Updated monolog version (#23)

Factory to create the adapter

30 Aug 19:17

Choose a tag to compare

1.6

Add a factory to create the adapter (#22)

Update predis version again. To try to solver dependency problems

13 Jun 16:46

Choose a tag to compare

Check config for log adapter

08 Jun 17:00

Choose a tag to compare

Check config in Logger Adapter (#14)

* Check config in Logger Adapter

 - Its was implemented a way to check if the needed variables was setted
   in the moment when LoggerAdapter was instanced and if not
   throws an exception

Fixing missing lib in composer file.

27 May 15:49

Choose a tag to compare

Add missing dependecy in composer file.

 - Adding predis/predis 1.0.*

Logger Adapter

02 May 20:16

Choose a tag to compare

Transforming QueueLogger to implement AdapterInterface to provide fallback when need it.