├── .gitignore ├── .php_cs ├── README.md ├── composer.json ├── composer.lock ├── phpspec.yml └── src ├── DomainEventPublisher.php ├── DomainEvents.php ├── Event.php ├── EventDispatcher.php ├── EventListener.php └── EventSubscriber.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | 4 | vendor 5 | 6 | -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fesor/domain-events/HEAD/.php_cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fesor/domain-events/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fesor/domain-events/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fesor/domain-events/HEAD/composer.lock -------------------------------------------------------------------------------- /phpspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fesor/domain-events/HEAD/phpspec.yml -------------------------------------------------------------------------------- /src/DomainEventPublisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fesor/domain-events/HEAD/src/DomainEventPublisher.php -------------------------------------------------------------------------------- /src/DomainEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fesor/domain-events/HEAD/src/DomainEvents.php -------------------------------------------------------------------------------- /src/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fesor/domain-events/HEAD/src/Event.php -------------------------------------------------------------------------------- /src/EventDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fesor/domain-events/HEAD/src/EventDispatcher.php -------------------------------------------------------------------------------- /src/EventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fesor/domain-events/HEAD/src/EventListener.php -------------------------------------------------------------------------------- /src/EventSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fesor/domain-events/HEAD/src/EventSubscriber.php --------------------------------------------------------------------------------