makinacorpus / message-broker
Opiniated and simple message broker interface along with a few implementations
Installs: 4 735
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 0
Requires
- php: >=8.0
- makinacorpus/message: ^1.0.4
- makinacorpus/normalization: ^1.0.1 || ^2.0
- psr/log: ^1.0 || ^2.0 || ^3.0
Requires (Dev)
- makinacorpus/goat-query: ^3.0.4
- makinacorpus/goat-query-bundle: >=3.0
- phpunit/phpunit: ^9
- ramsey/uuid: ^3.8 || ^4.0
- symfony/config: ^5.4 || ^6.0
- symfony/console: ^5.4 || ^6.0
- symfony/event-dispatcher: ^4.4 || ^5.0 || ^6.0
- symfony/http-kernel: ^5.4 || ^6.0
- symfony/serializer-pack: ^1.0|^5.0
- symfony/yaml: ^5.4 || ^6.0
Suggests
- doctrine/dbal: For query builder usage over a Doctrine PDO connection
- doctrine/doctrine-bundle: For query builder usage over a Doctrine PDO connection
- makinacorpus/goat-query: For using PostgreSQL implementations of everything
- makinacorpus/goat-query-bundle: For using PostgreSQL implementations of everything
- symfony/serializer-pack: For better object serialisation and normalisation within the bus
README
Opiniated and simple message broker interface along with a PostgreSQL working and stable implementation.
This package alone may probably not useful for many, please consider using it
along the makinacorpus/corebus
package, which add meaningful opiniated bus
logic around.
This implementation was extracted from makinacorpus/goat
and is stable.
Setup
First of all, install this package:
composer install makinacorpus/message-broker
It is also recommended to chose an UUID implementation:
composer install ramsey/uuid
Or:
composer install symfony/uid
Our favorite remains ramsey/uuid
.
Symfony
Start by installing the makinacorpus/goat-query-bundle
Symfony bundle if you
with to use the PostgreSQL implementation:
composer install makinacorpus/goat-query-bundle
And configure it as documented.
Then register the bundle into your config/bundles.php
file:
<?php return [ // ... Your other bundles. MakinaCorpus\MessageBroker\Bridge\Symfony\MessageBrokerBundle::class => ['all' => true], ];
Important note: using Symfony and the goat-query
implementation, the
message broker will default on the goat.runner.default
default database
connection.
If you need to setup another connection, simply add into the
config/goat_query.yaml
file:
parameters: # # Overrides the one from this bundle. # goat.runner.message_broker: alias: goat.runner.my_message_broker_connection goat_query: runner: # ... Your other connections, then: # # Your dedicated connection. # my_message_broker_connection: url: '%env(resolve:DATABASE_URL_MESSAGE_BROKER)%'
This library may evolve later to allow multiple message brokers to co-exist in container, one for each queue, case in which environment variables will become the primary place for configuring.
Another important note: using Symfony and the goat-query
implementation,
message broker instance will always be registered with the queue named
default
.
This will be configurable someday, it just isn't right now.
Standalone
This is not documented yet, but basically only thing you need to do is to
create an instance implementing MessageBroker
.
PostgreSQL schema
If you are going to use the PostgreSQL implementation, please create the
necessary database tables in your default schema, please see the
src/Adapter/GoatQuery/message-broker.pg.sql
file.
Usage
This is not documented yet.
Run tests
A docker environement with various containers for various PHP versions is
present in the sys/
folder. For tests to work in all PHP versions, you
need to run composer update --prefer-lowest
in case of any failure.
composer install composer update --prefer-lowest cd sys/ ./docker-rebuild.sh # Run this only once ./docker-run.sh
Additionnaly generate coverage report:
./docker-coverage.sh
HTML coverage report will be generated in coverage
folder.