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)7114.6k↓21.3%25MITPHPPHP ^7.2 || ^8.0

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 1mo 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

44

—

FairBetter than 92% of packages

Maintenance41

Moderate activity, may be stable

Popularity38

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

486d 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

[doctrine/orm

Object-Relational-Mapper for PHP

10.2k285.3M6.2k](/packages/doctrine-orm)[reliese/laravel

Reliese Components for Laravel Framework code generation.

1.7k3.4M16](/packages/reliese-laravel)[wildside/userstamps

Laravel Userstamps provides an Eloquent trait which automatically maintains `created\_by` and `updated\_by` columns on your model, populated by the currently authenticated user in your application.

7511.7M13](/packages/wildside-userstamps)[prooph/pdo-event-store

Prooph PDO EventStore

1121.2M19](/packages/prooph-pdo-event-store)[hipsterjazzbo/landlord

A simple, single database multi-tenancy solution for Laravel 5.2+

613270.0k1](/packages/hipsterjazzbo-landlord)[stancl/virtualcolumn

Eloquent virtual column.

826.8M13](/packages/stancl-virtualcolumn)

PHPackages © 2026

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