default ddd php project
1.0.0
Basic skeleton containing just a /_healthcheck
endpoint, and including:
/docker
folder and the README.md
in there).bin/phpunit
to pass the unit tests)./vendor/bin/phpcs
, run bin/phpcs
to run a code sniffer based on PSR2 standard).If you want to include Redis in your project, run docker-compose -f docker-compose-with-redis.yml up -d
Docker
docker-compose up -d
and wait for all required packages to install.docker exec -ti mylocalproject-php-fpm bash
) and run a composer install
from inside{
"status": "i am ok"
}
Now, it is completely up to you how do you want your project to grow :)
If you consider the dockerized environment good enough to production, remember these two steps:
composer install --no-dev --optimize-autoloader --apcu-autoloader
APP_ENV
to pro
within the .env
file.You can see a reasonably good performance by executing
Apache Bench tool,
with around 100s of requests in 10s concurrent: ab -n 100 -c 10 http://localhost:8000/_healthcheck
This project is architectured according to a DDD + CQRS pattern, which will contain three main parts:
Domain
.Application
and Domain
.Extending the previous architecture, this is the main folder structure within the project
Domain
└─── Exception: Contains `AppException`, responsible for any exception about the application which
| will contain an internal error code, plus a collection of `ErrorCodes` along the app
| (important, taking into account that e.g. HTTP error codes sometimes are not informative enough)
|
└─── Model: Core business logic within the aplication, which will also contain validations for correctness.
| In case that we use events through the system (e.g. creation, updates...) they would be placed here as well.
| It will contain behavior and data, following[DomainModel](https://martinfowler.com/eaaCatalog/domainModel.html) Martin Fowler's pattern
|
└─── Repository: Interfaces to access the data model that shall be viewed as a Collection, with a composition as follows:
└─── `findOfId`: Find a specific Model from a given unique ID. Ideally returns a Domain exception when not found
└─── `findOfXxx`: Find the Model through an unique ID
└─── `save`: responsible of create/update the model
└─── `delete`: responsible of delete the model from the collection
Application
└─── Command: Executes an use case by orchestrating domain objects, and ideally produces an output in the shape of an event
| └─── Request: Value objects representing a request per command
|
└─── Query: Implementation of specialized queries (anything different of a `findOfId`) to the model.
| Note: those are part of the Application because the Domain should not be aware at all about the expected Responses
└─── Request: Value objects representing a request per query
└─── Response: Set of Value Objects which we expect to obtain as a result of the query, ideally implementing a `Serializable`
Infrastructure
└─── EventListener: Even though those could be part of the Application layer (as actors regarding different events),
| right now they are an infrastructure concern as the infra too is implemented as an Event schema.
| This could be different depending on your framework of choice (e.g. in Zend they would be middlewares)
|
└─── Repository: Contains folders with the different sources of implementation per repository (e.g, `MySqlUsersRepository`)
|
└─── Service: Third-party specific implementations of services and connectors (REST, MongoDB, Stripe...)
|
└─── Ui: Contains the user interface communication, mainly Console commands (cron/daemons) and Web commands (controllers)