wwwision/dcb-eventstore-umadb-grpc

UmaDB adapter (gRPC) for the Dynamic Consistency Boundary implementation

Maintainers

Package info

github.com/bwaidelich/dcb-eventstore-umadb-grpc

Type:package

pkg:composer/wwwision/dcb-eventstore-umadb-grpc

Fund package maintenance!

bwaidelich

Paypal

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 2

Open Issues: 0

1.0.0 2025-12-28 15:07 UTC

This package is auto-updated.

Last update: 2026-03-05 13:48:45 UTC


README

UmaDB adapter for the Dynamic Consistency Boundary implementation.

Usage

Install via composer:

composer require wwwision/dcb-eventstore-umadb-grpc

Create instance

use Wwwision\DCBEventStoreUmaDbGrpc\UmaDbEventStore;

$eventStore = UmaDbEventStore::create('127.0.0.1:50051');

Specify api key / CA certificate

UmaDB can be used with TLS and API Key:

use Wwwision\DCBEventStoreUmaDbGrpc\UmaDbEventStore;

$eventStore = UmaDbEventStore::create(
  hostname: '127.0.0.1:50051',
  apiKey: 'secret',
  caPath: '/path/to/certificate.pem',
);

See wwwision/dcb-eventstore for more details and usage examples

Note

This package requires the custom UmaDB PHP extension to be installed See wwwision/dcb-eventstore-umadb-grpc for a version that uses gRPC

Contribution

Contributions in the form of issues or pull requests are highly appreciated

License

See LICENSE