jacky-utwani / kubemq-php
PHP Client library for KubeMQ (https://kubemq.io)
Installs: 18
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/jacky-utwani/kubemq-php
Requires
- php: >=7.1
- ext-grpc: *
- google/protobuf: ^3.9.1
- grpc/grpc: ^1.22
This package is auto-updated.
Last update: 2025-10-06 19:38:47 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.