symfony/event-dispatcher

Provides tools that allow your application components to communicate with each other by dispatching events and listening to them

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 18 seconds ago
Added to GitGenius on September 7th, 2026
Created on February 22nd, 2011
Open Issues & Pull Requests: 0 (+0)
GitHub issues: Disabled - open counts may still include pull requests.
Number of forks: 66
Total Stargazers: 8,532 (+0)
Total Subscribers: 20 (+0)

Repository Insights (GitGenius)

Most active contributors

Sign in to see contributor activity.

Related repositories by overlapping contributors

No overlapping-contributor repos identified yet.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

GitHub issues are disabled for this repository, so issue analytics and the issue explorer are not available.

Detailed Description

Symfony EventDispatcher is a PHP component that implements the observer pattern to enable decoupled communication between application components through event dispatching and listening.

The component solves the problem of tight coupling between different parts of an application by providing a centralized mechanism for components to communicate without direct dependencies. Rather than having components call each other directly, they dispatch named events that other components can listen to. This approach allows you to add, remove, or modify event listeners without changing the components that trigger events, making your codebase more modular and maintainable.

The EventDispatcher component is well-suited for any PHP application that needs to decouple its internal components or allow plugins and extensions to hook into application lifecycle events. It works particularly well in larger applications where multiple features need to react to the same occurrence, such as logging, caching invalidation, or triggering secondary workflows. The component integrates naturally into the Symfony framework but can also be used standalone in any PHP project that requires event-driven architecture.

The project maintains steady development activity with regular updates and bug fixes integrated into the main Symfony repository. Pull requests and issues are processed through the central Symfony repository rather than this standalone component mirror, indicating active maintenance as part of the broader framework ecosystem. The component receives ongoing refinement to ensure compatibility with current PHP standards and Symfony versions.