PDO EventStore implementation for Prooph EventStore
- PHP >= 7.1
- PDO_MySQL Extension or PDO_PGSQL Extension
For MariaDB you need server vesion >= 10.2.6. For MySQL you need server version >= 5.7.9. For Postgres you need server version >= 9.4.
For MariaDB run the script in scripts/mariadb/01_event_streams_table.sql
on your server.
For MySQL run the script in scripts/mysql/01_event_streams_table.sql
on your server.
For Postgres run the script in scripts/postgres/01_event_streams_table.sql
on your server.
This will setup the required event streams table.
If you want to use the projections, run additionally the scripts scripts/mariadb/02_projections_table.sql
(for MariaDB), scripts/mysql/02_projections_table.sql
(for MySQL) or
scripts/postgres/02_projections_table.sql
(for Postgres) on your server.
If you want to run the unit tests locally you need a runnging MySql server listening on port 3306
and a running Postgres server listening on port 5432
. Both should contain an empty database event_store_tests
.
$ vendor/bin/phpunit -c phpunit.xml.mariadb
$ vendor/bin/phpunit -c phpunit.xml.mysql
$ vendor/bin/phpunit -c phpunit.xml.postgres
$ docker-compose -f docker-compose-tests.yml run --rm composer run-script test-mariadb --timeout 0
$ docker-compose -f docker-compose-tests.yml run --rm composer run-script test-mysql --timeout 0
$ docker-compose -f docker-compose-tests.yml run --rm composer run-script test-postgres --timeout 0
- Ask questions on Stack Overflow tagged with #prooph.
- File issues at https://github.com/prooph/event-store/issues.
- Say hello in the prooph gitter chat.
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.