PHPackages                             event-engine/prooph-v7-event-store - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Database &amp; ORM](/categories/database)
4. /
5. event-engine/prooph-v7-event-store

ActiveLibrary[Database &amp; ORM](/categories/database)

event-engine/prooph-v7-event-store
==================================

Event Engine Prooph V7 Event Store Integration

v0.10.3(1y ago)7127.8k↓33.6%25MITPHPPHP ^7.2 || ^8.0CI failing

Since Mar 20Pushed 1y ago2 watchersCompare

[ Source](https://github.com/event-engine/prooph-v7-event-store)[ Packagist](https://packagist.org/packages/event-engine/prooph-v7-event-store)[ Docs](https://event-engine.io/)[ RSS](/packages/event-engine-prooph-v7-event-store/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (10)Dependencies (9)Versions (19)Used By (5)

event-engine/prooph-v7-event-store
==================================

[](#event-engineprooph-v7-event-store)

Event Engine Prooph V7 Event Store Bindings

Installation
------------

[](#installation)

```
composer require event-engine/prooph-v7-event-store
```

Prooph Binding
--------------

[](#prooph-binding)

tbd

InMemoryEventStore
------------------

[](#inmemoryeventstore)

tbd

FilesystemEventStore
--------------------

[](#filesystemeventstore)

A prooph v7 compatible `FilesystemEventStore` is included, too. It is meant to be used for demonstration purpose only (for example in a workshop).

```
//Basic set up that's able to handle Prooph\Common\Messaging\DomainEvent
$filesystemEventStore = new \EventEngine\Prooph\V7\EventStore\FilesystemEventStore(
    'data/prooph.event_store.json',
    \JSON_PRETTY_PRINT
    // optional MessageFactory -> defaults to FQCNMessageFactory
    // optional MessageConverter -> defaults to NoOpMessageConverter
);

//Create an empty stream
$filesystemEventStore->create(
    new \Prooph\EventStore\Stream(
        new \Prooph\EventStore\StreamName('event_stream'),
        new ArrayIterator()
    )
);

//Can also be used together with an InMemoryProjectionManager
$projectionManager = new \EventEngine\Prooph\V7\EventStore\Projecting\InMemory\InMemoryProjectionManager(
    $filesystemEventStore,
    new \EventEngine\Persistence\InMemoryConnection()
);

$query = $projectionManager->createQuery();

$query->fromStream('event_stream')
    ->whenAny(function (array $state, \Prooph\Common\Messaging\DomainEvent $event) {
        echo "{$event->messageName()} stored in event_stream\n";
    });

$query->run();
```

*Please Note: The combination of FilesystemEventStore and InMemoryProjectionManager has the drawback that projections only see events that are in the event store at the time of running the projection. If other PHP processes add events to the store, those are first visible for the projection after restarting the PHP process and running the projection again. We might add a FilesystemProjectionManager in the future, if needed.*

###  Health Score

43

—

FairBetter than 89% of packages

Maintenance38

Infrequent updates — may be unmaintained

Popularity39

Limited adoption so far

Community19

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 57.1% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~163 days

Recently: every ~391 days

Total

14

Last Release

532d ago

PHP version history (2 changes)v0.1.0PHP ^7.2

v0.10.0PHP ^7.2 || ^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/e14a3b6de25e60cb289c51b23c58ffd8c56b28053deb4a75d3b7ea6b7fa03809?d=identicon)[proophsoftware](/maintainers/proophsoftware)

---

Top Contributors

[![arnedesmedt](https://avatars.githubusercontent.com/u/5807162?v=4)](https://github.com/arnedesmedt "arnedesmedt (4 commits)")[![sandrokeil](https://avatars.githubusercontent.com/u/3597436?v=4)](https://github.com/sandrokeil "sandrokeil (2 commits)")[![zluiten](https://avatars.githubusercontent.com/u/1336070?v=4)](https://github.com/zluiten "zluiten (1 commits)")

---

Tags

event-engineevent-sourcingevent-storephp7prooph

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/event-engine-prooph-v7-event-store/health.svg)

```
[![Health](https://phpackages.com/badges/event-engine-prooph-v7-event-store/health.svg)](https://phpackages.com/packages/event-engine-prooph-v7-event-store)
```

###  Alternatives

[propel/propel1

Propel is an open-source Object-Relational Mapping (ORM) for PHP5.

8351.6M87](/packages/propel-propel1)[prooph/pdo-event-store

Prooph PDO EventStore

1121.2M27](/packages/prooph-pdo-event-store)[jfelder/oracledb

Oracle DB driver for Laravel

11518.4k](/packages/jfelder-oracledb)[event-engine/php-engine

CQRS / ES PHP SDK for event-engine.io

5437.8k2](/packages/event-engine-php-engine)[prooph/event-store-doctrine-adapter

Doctrine Adapter for ProophEventStore

1357.2k4](/packages/prooph-event-store-doctrine-adapter)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
