PHPackages                             uno/event-sdk - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. uno/event-sdk

ActiveSymfony-bundle[Utility &amp; Helpers](/categories/utility)

uno/event-sdk
=============

Reusable Symfony Event SDK with Publisher, Subscriber, and Messenger integration

v1.0.0(5mo ago)03MITPHPPHP &gt;=7.4

Since Dec 5Pushed 5mo agoCompare

[ Source](https://github.com/GaneshRawool0718/uno-event-sdk)[ Packagist](https://packagist.org/packages/uno/event-sdk)[ Docs](https://github.com/GaneshRawool0718/uno-event-sdk)[ RSS](/packages/uno-event-sdk/feed)WikiDiscussions main Synced 1mo ago

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

Event SDK (Symfony Bundle)
==========================

[](#event-sdk-symfony-bundle)

A reusable and lightweight Event SDK for Symfony applications that simplifies event publishing and event subscribing across microservices.

This SDK is built using Symfony Messenger, supports Redis transport, and provides a clean, unified structure for asynchronous communication.

---

Features
--------

[](#features)

- Publish events with a standard EventMessage format
- Subscribe to events using Symfony Messenger workers
- Extendable subscriber system using a registry pattern
- Optional HTTP forwarding subscriber (e.g., send events to any service like Spring Boot)
- Automatic dependency injection configuration
- Compatible with Symfony 4.4 → 7.x
- Can be used via:
    - Local path
    - GitHub repository
    - Composer (Packagist)

---

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

[](#installation)

### 1. Install via Composer (Packagist)

[](#1-install-via-composer-packagist)

```
composer require uno/event-sdk
```

### 2. Install from GitHub (without Packagist)

[](#2-install-from-github-without-packagist)

```
composer require uno/event-sdk:dev-main
```

### 3. Use Locally (development mode)

[](#3-use-locally-development-mode)

In your main project `composer.json`:

```
{
  "repositories": [
    {
      "type": "path",
      "url": "../uno-event-sdk"
    }
  ]
}
```

Then:

```
composer require uno/event-sdk:* --dev
```

---

Configuration
-------------

[](#configuration)

Enable the bundle automatically (Flex) or in `config/bundles.php`:

```
return [
    Uno\EventSdk\UnoEventSdkBundle::class => ['all' => true],
];
```

Configure the messenger transport (Redis example):

```
framework:
  messenger:
    transports:
      async: "%env(MESSENGER_TRANSPORT_DSN)%"
```

Example DSN:

```
redis://localhost:6379/messages

```

---

Publishing an Event
-------------------

[](#publishing-an-event)

```
$publisher->publish('user.registered', [
    'id' => 1,
    'email' => 'test@example.com'
]);
```

---

Subscribing to Events
---------------------

[](#subscribing-to-events)

Run worker:

```
php bin/console messenger:consume async -vv
```

---

Project Structure
-----------------

[](#project-structure)

```
src/
├── Contract/
├── Publisher/
├── Subscriber/
├── Message/
├── Exception/
├── EventListener/
├── DependencyInjection/
├── Resources/config/services.yaml
└── UnoEventSdkBundle.php

```

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance71

Regular maintenance activity

Popularity3

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity36

Early-stage or recently created project

 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

Unknown

Total

1

Last Release

164d ago

### Community

Maintainers

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

---

Top Contributors

[![GaneshRawool0718](https://avatars.githubusercontent.com/u/216658744?v=4)](https://github.com/GaneshRawool0718 "GaneshRawool0718 (23 commits)")

---

Tags

eventsymfonysdksubscriberMessengerpublisher

### Embed Badge

![Health badge](/badges/uno-event-sdk/health.svg)

```
[![Health](https://phpackages.com/badges/uno-event-sdk/health.svg)](https://phpackages.com/packages/uno-event-sdk)
```

###  Alternatives

[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.3M152](/packages/sulu-sulu)[pentatrion/vite-bundle

Vite integration for your Symfony app

2725.3M13](/packages/pentatrion-vite-bundle)[rcsofttech/audit-trail-bundle

Enterprise-grade, high-performance Symfony audit trail bundle. Automatically track Doctrine entity changes with split-phase architecture, multiple transports (HTTP, Queue, Doctrine), and sensitive data masking.

1022.4k](/packages/rcsofttech-audit-trail-bundle)

PHPackages © 2026

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