Componette

Componette

deprecated-packages

deprecated-packages / EventDispatcher v0.4.0

[DEPRECATED] use contributte/event-dispatcher

download-cloud-line composer require symnedi/event-dispatcher

Symnedi/EventDispatcher

Build Status Quality Score Code Coverage Downloads Latest stable

Integration of Symfony\EventDispatcher into Nette\DI.

Install

$ composer require symnedi/event-dispatcher

Register the extension in config.neon:

extensions:
	- Symnedi\EventDispatcher\DI\EventDispatcherExtension

Usage

There are 3 important parts using EventDispatcher:

  • Event
  • EventSubscriber
  • EventDispatcher

Event is value object, it simply stores data we use - e.g. user email and password.

EventSubscriber listens to certain event and invokes some action, when that happens - when user logs in.

EventDispatcher invokes the event in the place where it happens - in the login form just after the login method.

To see the real code in practise, there is example section with both Event and EventSubscriber.

Also you can find AppEvents.php that basically lists all used events. It's not necessary for the starters, just convenient in huge applications.

For more details, check Symfony documentation, or this very nice presentation with real-life examples.

Testing

$ phpunit

Contributing

Please see CONTRIBUTING for details.

  • v0.4.0 v0.4.0

    • Add support for PHP7 \Throwable (thx @Vrtak-CZ).
    • Add support for Nette 2.4.
Componette Componette felix@nette.org