Stars: 108
Forks: 29
Pull Requests: 106
Issues: 62
Watchers: 12
Last Updated: 2022-12-22 19:12:52
PHP 7.4 Event Store Client Implementation
License: BSD 3-Clause "New" or "Revised" License
Languages: PHP, Shell
PHP 7.4 Event Store Client Implementation.
Prooph Event Store Client supports async non-blocking communication via TCP to EventStore.
The EventStoreConnection
maintains a full-duplex connection between the client and the Event Store server.
The protobuf
extension from Google is recommended, however it is not required.
When this extension is missing, the client will fallback to use google/protobuf
installable via composer.
The extension allegro/php-protobuf is not compatible.
Additional extensions are only needed if your app necessitates a high numbers of concurrent socket connections.
You can install prooph/event-store-client via composer by adding "prooph/event-store-client": "dev-master"
as requirement to your composer.json.
Using docker:
docker run --name eventstore-node -it -p 2113:2113 -p 1113:1113 eventstore/eventstore
Please refer to the documentation of eventstore.org.
See server section.
In the docker-folder you'll find three different docker-compose setups (single node, 3-node-cluster and 3-node-dns-cluster).
For a short overview please see the examples
folder.
Run the server with memory database
Note: This is the start-script of the Event Store database, not something provided by this library!
./run-node.sh --run-projections=all --mem-db
You need to ignore the ignore
group
./vendor/bin/phpunit --exclude-group=ignore
Those are tests that only work against an empty database and can only be run manually.
Before next run, restart the server. This way you can always start with a clean server.
See: https://github.com/prooph/event-store-client/tree/master/docker/unittest
Documentation is on the prooph website.
Please feel free to fork and extend existing or add new plugins and send a pull request with your changes! To establish a consistent code quality, please provide unit tests for all your changes and may adapt the documentation.
Released under the New BSD License.