ddd-php/event

To implement events in domain driven developement or anyother styles projects with PHP

1.0 2023-09-23 13:31 UTC

This package is auto-updated.

Last update: 2024-05-23 18:14:42 UTC


README

composer require ddd/event

Usage

Steps are:

  • create a domain event (name + past tense verb, example: AccountCreated implements DomainEventInterface)
  • publish this event
  • distribute events

Somewhere else:

  • create a subscriber at an event (exemple: class SendEmailWhenAccountCreatedSubscriber implements DomainEventSubscriber)
  • register the subscriber, when event will be distrute the subscriber will handle it and do what it has to do

To Contribut to ddd/Event

Requirements

  • docker
  • git

Install

Unit test

bin/phpunit

with Test Developpment Driven (thanks Kent Beck and the others), good practices (thanks R.Martin and the others)

Quality

  • phpcs STD12
  • phpstan level 9
  • coverage 100%
  • infection MSI >99%

Quick check with:

./codecheck

Check coverage with:

bin/phpunit --coverage-html var

and view 'var/index.html' with your browser

Check infection with:

bin/infection

and view 'var/infection.html' with your browser