PHPackages                             prooph/event-store-flywheel-adapter - 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. prooph/event-store-flywheel-adapter

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

prooph/event-store-flywheel-adapter
===================================

Flywheel Adapter for ProophEventStore

v1.2.0(10y ago)71533BSD-3-ClausePHPPHP ^5.5 || ^7.0

Since Feb 25Pushed 9y ago6 watchersCompare

[ Source](https://github.com/prooph/event-store-flywheel-adapter)[ Packagist](https://packagist.org/packages/prooph/event-store-flywheel-adapter)[ Docs](http://getprooph.org/)[ RSS](/packages/prooph-event-store-flywheel-adapter/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (3)Dependencies (8)Versions (6)Used By (0)

Flywheel Adapter for ProophEventStore
=====================================

[](#flywheel-adapter-for-proopheventstore)

[![Build Status](https://camo.githubusercontent.com/7025d1b1f6926274434216fdc0fc86d8c5eb1affed645debeae6ad2d3dcf15c7/68747470733a2f2f7472617669732d63692e6f72672f70726f6f70682f6576656e742d73746f72652d666c79776865656c2d616461707465722e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/prooph/event-store-flywheel-adapter)[![Coverage Status](https://camo.githubusercontent.com/42bfd41f953c9d0cd71c6c282370dee6de8e731c742d95c3a51ff6cb9163b9d1/68747470733a2f2f636f766572616c6c732e696f2f7265706f732f6769746875622f70726f6f70682f6576656e742d73746f72652d666c79776865656c2d616461707465722f62616467652e7376673f6272616e63683d6d6173746572)](https://coveralls.io/github/prooph/event-store-flywheel-adapter?branch=master)[![Gitter](https://camo.githubusercontent.com/abe08b740a4156153736f791393ec4da6619c4be73212e75769f52edacc0e2b5/68747470733a2f2f6261646765732e6769747465722e696d2f4a6f696e253230436861742e737667)](https://gitter.im/prooph/improoph)

Use [Prooph Event Store](https://github.com/prooph/event-store)with [Flywheel](https://github.com/jamesmoss/flywheel).

Overview
--------

[](#overview)

**Flywheel** is a serverless document database which only uses flat files on your local filesystem to store the data. All the events will be stored and loaded from a choosen directory. This is well suited when you bootstrap an application and you don't need a real database server right away. It can also be a good candidate for writing functionnal tests.

But of course you **must not run it in production** since it is not designed to handle a huge amount of events and doesn't manage transactions.

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

[](#installation)

You can install this package via Composer:

```
composer require prooph/event-store-flywheel-adapter
```

Usage
-----

[](#usage)

See the [quickstart example](./examples/quickstart.php).

It creates some events and store them in JSON files in the `quickstart/event_store` directory. Here is an example of a created JSON file:

```
{
    "event_id": "4e5bba37-e2bb-46d3-9988-e2ec6b02e664",
    "version": 1,
    "event_name": "ProophTest\\EventStore\\Mock\\UserCreated",
    "payload": {
        "name": "Max Mustermann"
    },
    "metadata": {
        "tag": "person"
    },
    "created_at": "2016-02-25T13:28:54.365200"
}
```

Support
-------

[](#support)

- File issues at .
- Say hello in the [prooph gitter](https://gitter.im/prooph/improoph) chat.

Contribute
----------

[](#contribute)

Please **feel free to fork**, extend existing and send a pull request with your changes! To establish a consistent code quality, please provide **unit tests** for all your changes. You are also encouraged to use the `composer lint` command to validate the **coding standards**.

License
-------

[](#license)

Released under the [New BSD License](./LICENSE).

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 62.5% 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 ~36 days

Total

3

Last Release

3655d ago

### Community

Maintainers

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

---

Top Contributors

[![MattKetmo](https://avatars.githubusercontent.com/u/334996?v=4)](https://github.com/MattKetmo "MattKetmo (10 commits)")[![prolic](https://avatars.githubusercontent.com/u/394428?v=4)](https://github.com/prolic "prolic (4 commits)")[![sandrokeil](https://avatars.githubusercontent.com/u/3597436?v=4)](https://github.com/sandrokeil "sandrokeil (2 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[doctrine/orm

Object-Relational-Mapper for PHP

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

MongoDB driver library

1.6k64.0M546](/packages/mongodb-mongodb)[reliese/laravel

Reliese Components for Laravel Framework code generation.

1.7k3.4M16](/packages/reliese-laravel)[prooph/event-store

Event Store v8

5471.5M40](/packages/prooph-event-store)[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)

PHPackages © 2026

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