https://github.com/sandrokeil/arangodb-event-store
ArangoDB implementation of ProophEventStore
https://github.com/sandrokeil/arangodb-event-store
arangodb database eventstore nosql php prooph
Last synced: 3 months ago
JSON representation
ArangoDB implementation of ProophEventStore
- Host: GitHub
- URL: https://github.com/sandrokeil/arangodb-event-store
- Owner: sandrokeil
- License: bsd-3-clause
- Created: 2017-08-05T21:35:23.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-07-14T15:29:10.000Z (almost 5 years ago)
- Last Synced: 2025-02-28T07:34:53.409Z (3 months ago)
- Topics: arangodb, database, eventstore, nosql, php, prooph
- Language: PHP
- Homepage: http://getprooph.org
- Size: 135 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# arangodb-event-store
[](https://travis-ci.org/prooph/arangodb-event-store)
[](https://coveralls.io/github/prooph/arangodb-event-store?branch=master)
[](https://gitter.im/prooph/improoph)[ArangoDB](https://arangodb.com/) EventStore implementation for [prooph EventStore](https://github.com/prooph/event-store)
## Requirements
- PHP >= 7.1
- ArangoDB server version >= 3.0## Setup
TBD
## Tests
If you want to run the unit tests locally you need [Docker](https://docs.docker.com/engine/installation/ "Install Docker")
and [Docker Compose](https://docs.docker.com/compose/install/ "Install Docker Compose").Install dependencies with:
```
$ docker run --rm -i -v $(pwd):/app prooph/composer:7.1 update -o
```Start containers with
```
$ docker-compose up -d --no-recreate
```Execute tests with
```
$ docker-compose run --rm php vendor/bin/phpunit$ docker-compose run --rm vpack vendor/bin/phpunit
```