Skip to content

ecotoneframework/php-ddd-cqrs-event-sourcing-symfony-laravel-ecotone

Repository files navigation

Ecotone Framework Demo Application

Objectives

  • To provide a simple example of how to implement Domain Driven Design and Messaging Architecture in PHP.
  • To show how to implement CQRS, Event Sourcing and Hexagonal Architecture in PHP.
  • To show how to implement Resilientamd Observable Microservices in PHP.

Playing with the demo

Run docker-compose up -d to start all services, and wait for them to start docker-compose logs -f.

This Demo provides two integrated Applications.

  • Customer Service - which allows for reporting issues by customers
  • Backoffice Service - which allows for working on tickets by employees

Services communicate with each other using RabbitMQ with Ecotone's Distributed Bus.

Quickstart

  • To report issue as a customer, go to Customer Service
  • From Backoffice Service you may start working on ticket, that was correlated with issue reported by customer.
  • You may also check Jaeger to get full overview of how communication looks like and how each component behave and what is happening.

Additionaly you may check:

  • Whenever issue is reported, confirming email will be sent to the customer, which can be found Mailbox.
  • First time email is sent it's set up for failing, so you can get feeling of working with system that can recover from error messages using Ecotone Pulse.

Stack

  • Ecotone - PHP Framework for building resilient, business oriented system in PHP
  • Symfony - PHP Framework for building web applications
  • Laravel - PHP Framework for building web applications
  • RabbitMQ - Message Broker for asynchronous communication
  • Ecotone Pulse - Monitor for any processing errors and recover from failed messages.
  • OpenTelemetry with Jaeger - Distributed Tracing for monitoring and troubleshooting microservices-based distributed systems

Business Domain

Customer Service

  • Customer Service is Laravel+Ecotone application, where customers can report issues. This happens using CQRS combined with Eloquent Models.

Laravel CQRS


  • Whenever new issue is reported, email is send to the with confirmation. This happens using Asynchronous Event Handlers, which are backed by RabbitMQ.

Laravel asynchronous event handling

Backoffice Service

  • Backoffice Service is Symfony+Ecotone application, where employees can be registered and work on the tickets.
    All issues reported by customers are synchronized to Backoffice Service and are correlated with tickets.
    The synchronization between Customer Service and Backoffice Service is done using Events and Distributed Bus for cross service communication via RabbitMQ.

Symfony Microservice


  • Employees can work on the tickets provides information about the status. As we want to know full history, Tickets are Event-Sourced.
    From Event Sourced tickets we build different Read Model Projections, which are used to display information about the ticket.

Tracing and Monitoring

  • The whole communication between Services is monitored and traced using OpenTelemetry with Jaeger.
    OpenTelemetry Jaeger

  • Any issue that happens in the system is reported to Ecotone Pulse, which is used to recover from failed messages.
    Ecotone Pulse