/rabbitmq-http-api-client-php

Simple Rabbit MQ HTTP API PHP client

Primary LanguagePHPBSD 2-Clause "Simplified" LicenseBSD-2-Clause

Simple RabbitMQ Management API PHP Client

This library is intended to help manage of RabbitMQ server in a PHP application.

RabbitMQ Management API provided by the RabbitMQ Management Plugin

Install

composer require groall/rabbitmq-http-api-client-php

Quick start

$client = new \RabbitMqHttpApiClient('localhost', 15672, 'login', 'password');
$queueInfo = $client->queueInfo('/', 'queueName');