jacky-utwani/kubemq-php

PHP Client library for KubeMQ (https://kubemq.io)

v1.0 2020-09-06 07:48 UTC

This package is auto-updated.

Last update: 2024-04-06 16:27:27 UTC


README

PHP Client library for KubeMQ (https://kubemq.io/) - A message-based architecture for microservices providing flexible connectivity for hybrid environments: multi-cloud, on-premises, and at the edge.

Requirements

Installation

$ composer require jacky-utwani/kubemq-php

Note

The library is just a compiled version of .proto file available from KubeMQ, to compile your own library please follow the instructions on grpc.io

Usage

// Create client
$client = new Kubemq\kubemqClient('localhost:50000', [
        'credentials' => Grpc\ChannelCredentials::createInsecure(),
        'grpc.primary_user_agent' => 'my-user-agent-identifier',
    ]
);

For more functions check kubemqClient.php. More information will be available soon.