andrewmy / rabbitmq-management-api
An object oriented wrapper for the RabbitMQ Management HTTP Api; a PHP 8 fork from richardfullmer
2.1.2
2022-02-10 16:27 UTC
Requires
- php: ^7.1|^8.0
- php-http/client-common: ^2.2.1
- php-http/client-implementation: ^1.0
- php-http/discovery: ^1.0
- php-http/httplug: ^2.0
- php-http/message-factory: ^1.0
- psr/http-message: ^1.0
This package is auto-updated.
Last update: 2024-10-17 15:34:21 UTC
README
A simple object oriented wrapper for the RabbitMQ Management HTTP Api in PHP 7.1+
Uses PHP-HTTP for requests.
A PHP 8-compatible fork of richardfullmer/rabbitmq-management-api.
Installation
Installable through composer via:
$ composer require andrewmy/rabbitmq-management-api
Additionally, you require a httplug compatible client.
For example, use the Guzzle 7 adapter:
$ composer require php-http/guzzle7-adapter
Basic Usage
<?php use RabbitMq\ManagementApi\Client; require_once __DIR__ . '/../vendor/autoload.php'; $client = new Client(); $queue = $client->queues()->get('/', 'sample-messages-queue'); $response = $client->exchanges()->publish('/', 'sample-messages', array( 'properties' => array(), 'routing_key' => '', 'payload' => 'This is a test', 'payload_encoding' => 'string' )); if ($response['routed']) { print 'Message delivered'; }
License
php-rabbitmq-management-api is licensed under the MIT License - see the LICENSE file for details
Credits
Structure from KnpLabs php-github-api
Rabbit's Excellent Message Queue