gitextract_2owf2s03/ ├── .gitattributes ├── .github/ │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ └── close-pull-request.yml ├── .gitignore ├── Attribute/ │ └── AsEventListener.php ├── CHANGELOG.md ├── Debug/ │ ├── TraceableEventDispatcher.php │ └── WrappedListener.php ├── DependencyInjection/ │ ├── AddEventAliasesPass.php │ └── RegisterListenersPass.php ├── EventDispatcher.php ├── EventDispatcherInterface.php ├── EventSubscriberInterface.php ├── GenericEvent.php ├── ImmutableEventDispatcher.php ├── LICENSE ├── README.md ├── Tests/ │ ├── ChildEventDispatcherTest.php │ ├── Debug/ │ │ ├── TraceableEventDispatcherTest.php │ │ └── WrappedListenerTest.php │ ├── DependencyInjection/ │ │ └── RegisterListenersPassTest.php │ ├── EventDispatcherTest.php │ ├── Fixtures/ │ │ ├── CustomEvent.php │ │ ├── DummyEvent.php │ │ ├── TaggedInvokableListener.php │ │ ├── TaggedMultiListener.php │ │ └── TaggedUnionTypeListener.php │ ├── GenericEventTest.php │ └── ImmutableEventDispatcherTest.php ├── composer.json └── phpunit.xml.dist