PHPackages                             rxthunder/eventstore - 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. rxthunder/eventstore

ActiveLibrary

rxthunder/eventstore
====================

EventStore library for RxThunder

0.2.0(6y ago)1171MITPHPPHP ^7.2

Since Jul 25Pushed 6y ago1 watchersCompare

[ Source](https://github.com/RxThunder/EventStore)[ Packagist](https://packagist.org/packages/rxthunder/eventstore)[ RSS](/packages/rxthunder-eventstore/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependencies (8)Versions (4)Used By (0)

[![](./resources/thunder-logo.svg)](./resources/thunder-logo.svg)

[![Latest Stable Version](https://camo.githubusercontent.com/68d47837e9ef707b3649de552d2adc299fc4650003ea52ba1b153ca884af8afa/68747470733a2f2f706f7365722e707567782e6f72672f72787468756e6465722f6576656e7473746f72652f762f737461626c652e737667)](https://packagist.org/packages/rxthunder/eventstore)[![Total Downloads](https://camo.githubusercontent.com/5245e45eadf8dca952f48b3525e89c2934c0e71328c5695c9429ca41942dff7b/68747470733a2f2f706f7365722e707567782e6f72672f72787468756e6465722f6576656e7473746f72652f642f746f74616c2e737667)](https://packagist.org/packages/rxthunder/eventstore)[![License](https://camo.githubusercontent.com/ef36d2734dcda17e7f022d607562dd22251224b289d54df3afb34f3d1c834444/68747470733a2f2f706f7365722e707567782e6f72672f72787468756e6465722f6576656e7473746f72652f6c6963656e73652e737667)](https://packagist.org/packages/rxthunder/eventstore)

[![Build](https://camo.githubusercontent.com/15a74e2634ebb6665d2a88fc68cfd05fc9f6739d5c82aa1735597f6ae7e24c57/68747470733a2f2f7472617669732d63692e6f72672f52785468756e6465722f4576656e7453746f72652e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/RxThunder/EventStore)

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

[](#installation)

```
composer install rxthunder/eventstore

```

Setup
-----

[](#setup)

First you must add new secrets in your .env files

```
# .env
EVENTSTORE_DSN_HTTP=
EVENTSTORE_DSN_TCP=

```

Then configure new parameters to be injected in the container

```
# config/parameters.php

$container->setParameter('eventstore.http', getenv('EVENTSTORE_DSN_HTTP'));
$container->setParameter('eventstore.tcp', getenv('EVENTSTORE_DSN_TCP'));
```

Copy paste the configuration of the desired console

```
# config/services.php

require_once __DIR__ . '/../vendor/rxthunder/eventstore/config/services.php';

use RxThunder\EventStore\Console\EventStoreConsole;
use RxThunder\EventStore\Console\EventStoreSetupConsole;

$container->register(EventStoreConsole::class)
    ->setPublic(true)
    ->setAutowired(true)
    ->setAutoconfigured(true)
;

$container->register(EventStoreSetupConsole::class)
    ->setPublic(true)
    ->setAutowired(true)
    ->setAutoconfigured(true)
;
```

Or if you prefer you can include the all existing and futures consoles

```
# config/services.php

require_once __DIR__ . '/../vendor/rxthunder/eventstore/config/services.php';
require_once __DIR__ . '/../vendor/rxthunder/eventstore/config/consoles.php';
```

### Tip

[](#tip)

If you don't need to automatically setup your EventStore projections with the relative console, then don't register the `EventStoreSetupConsole`.

This avoids the need to configure the following chapter.

### [PHP-HTTP](http://docs.php-http.org/en/latest/index.html)

[](#php-http)

It remain a final step, only if you want to use the `EventStoreSetupConsole`.

If you haven't already added a HTTP client implementation (PSR-18) into the DI. Find here a list of [existing implementation](https://packagist.org/providers/psr/http-client-implementation)

Similarly HTTP Requests must be built by your favorite factory, and you can found some library ready to use on [packagist](https://packagist.org/providers/php-http/message-factory-implementation).

Afterward simply alias your favorite client and factory with the interfaces.

```
$container->setAlias(\Psr\Http\Client\ClientInterface::class, ClientImplementation::class);
$container->setAlias(Http\Message\RequestFactory::class, FactoryImplementation::class);
```

Profit
------

[](#profit)

You got new consoles !

```
php vendor/bin/thunder

```

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity46

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~44 days

Total

3

Last Release

2398d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/5f31e3a808a4f015ebad005caa64866fc90e39475151fc95ef1e11f774d35505?d=identicon)[Th3Mouk](/maintainers/Th3Mouk)

---

Top Contributors

[![Th3Mouk](https://avatars.githubusercontent.com/u/5006899?v=4)](https://github.com/Th3Mouk "Th3Mouk (2 commits)")

###  Code Quality

Static AnalysisPHPStan

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/rxthunder-eventstore/health.svg)

```
[![Health](https://phpackages.com/badges/rxthunder-eventstore/health.svg)](https://phpackages.com/packages/rxthunder-eventstore)
```

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M651](/packages/sylius-sylius)[florianv/exchanger

Currency exchange rates framework for PHP

1874.7M15](/packages/florianv-exchanger)[happyr/linkedin-api-client

LinkedIn API client. Handles OAuth, CSRF protection. Easy to implement and extend. This is a standalone library for any composer project.

1991.6M12](/packages/happyr-linkedin-api-client)[j0k3r/graby

Graby helps you extract article content from web pages

384349.6k2](/packages/j0k3r-graby)[razorpay/ifsc

Razorpay IFSC Codes Library

382201.9k](/packages/razorpay-ifsc)[brd6/notion-sdk-php

Notion SDK for PHP

5918.0k](/packages/brd6-notion-sdk-php)

PHPackages © 2026

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