clivern/rabbitmq-hole

RabbitMQ HTTP API Client In PHP.

1.0.0 2021-10-21 17:00 UTC

This package is auto-updated.

Last update: 2024-04-23 21:15:42 UTC


README

rabbitmq-hole Logo

RabbitMQ Hole

RabbitMQ HTTP API Client In PHP

badge.svg 68747470733a2f2f696d672e736869656c64732e696f2f62616467652f56657273696f6e2d312e302e302d7265642e737667 68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c4943454e53452d4d49542d6f72616e67652e737667

Documentation

Installation:

To install the package via composer, use the following:

$ composer require clivern/rabbitmq-hole

This command requires you to have composer installed globally.

Usage:

To use the generic API client.

include_once __DIR__ . "/vendor/autoload.php";

use Clivern\RabbitMQHole\Client;
use Clivern\RabbitMQHole\Queues;


$client = new Client("http://rabbitmq.com:15672", "guest", "guest");

To use the Queue client.

$client = new Client("http://rabbitmq.com:15672", "guest", "guest");
$queues = new Queues($client);

# To get queues list
$queues->getQueues(); // [{....}]

Here is the full API documentation for RabbitMQ v3.9.8

Versioning

For transparency into our release cycle and in striving to maintain backward compatibility, rabbitmq-hole is maintained under the Semantic Versioning guidelines and release process is predictable and business-friendly.

See the Releases section of our GitHub project for changelogs for each release version of rabbitmq-hole. It contains summaries of the most noteworthy changes made in each release.

Bug tracker

If you have any suggestions, bug reports, or annoyances please report them to our issue tracker at https://github.com/clivern/rabbitmq-hole/issues

Security Issues

If you discover a security vulnerability within rabbitmq-hole, please send an email to hello@clivern.com

Contributing

We are an open source, community-driven project so please feel free to join us. see the contributing guidelines for more details.

License

© 2021, clivern. Released under MIT License.

rabbitmq-hole is authored and maintained by @clivern.