Skip to content

Releases: landingi/event-store-bundle

v2.0.0

26 Jan 11:56
e9f88b0
Compare
Choose a tag to compare

Bump symfony to 6.0.* and PHP to 8.1

Full Changelog: v1.2.1...v2.0.0

v1.2.1

05 May 16:04
0278433
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.2.0...v1.2.1

v1.2.0

21 Feb 09:21
12ce216
Compare
Choose a tag to compare

What's Changed

  • Install and configure landingi coding standard by @Ferror in #12
  • [PI-1239]Change Travis CI to GitHub actions by @dawidkocur in #14
  • [PI-1239]Add useful getter for CreatedAt object by @dawidkocur in #13

New Contributors

Full Changelog: 1.1.0...v1.2.0

Bundle auto-configuration

18 Jun 09:01
9a7b585
Compare
Choose a tag to compare

Bundle auto-configuration

  1. To config/packages add landingi_event_store.yaml with following content
landingi_event_store:
  event_store:
    connection: 'doctrine.dbal.default_connection' # event store DB connection
  auditlog:
    enabled: true                # set to false to disable AuditLogListener
    endpoint: 'http://audit-log' # base URL endpoint for SymfonyHttpAuditLogStore
    client: 'http_client'        # instance of Symfony\Contracts\HttpClient\HttpClientInterface interface
    strict_mode: true            # set to false to ignore StrictAuditLogListener allowed events list
  1. To config/bundles.php add:
Landingi\EventStoreBundle\LandingiEventStoreBundle::class => ['all' => true]

Package versioning via tags

25 Mar 12:12
1a5c696
Compare
Choose a tag to compare
v1.0.2

Remove versioning from composer.json file as the versioning should be…

PHP 8.0 support

10 Mar 11:54
f194bdc
Compare
Choose a tag to compare

Added support for the PHP newer than 7.4

The Event Store Bundle

11 Feb 09:58
98ff584
Compare
Choose a tag to compare

Gives you basic event store implementation