default ddd php project
1.0.0
الهيكل الأساسي الذي يحتوي على نقطة نهاية /_healthcheck
فقط، ويتضمن:
/docker
و README.md
الموجود هناك).bin/phpunit
لاجتياز اختبارات الوحدة)./vendor/bin/phpcs
، قم بتشغيل bin/phpcs
لتشغيل أداة اكتشاف الأكواد بناءً على معيار PSR2). إذا كنت تريد تضمين Redis في مشروعك، فقم بتشغيل docker-compose -f docker-compose-with-redis.yml up -d
عامل ميناء
docker-compose up -d
وانتظر حتى يتم تثبيت كافة الحزم المطلوبة.docker exec -ti mylocalproject-php-fpm bash
) وقم بتشغيل composer install
من الداخل{
"status" : " i am ok "
}
الآن، الأمر متروك لك تمامًا كيف تريد أن ينمو مشروعك :)
إذا كنت تعتبر بيئة الإرساء جيدة بما يكفي للإنتاج، فتذكر هاتين الخطوتين:
composer install --no-dev --optimize-autoloader --apcu-autoloader
APP_ENV
إلى pro
داخل ملف .env
. يمكنك رؤية أداء جيد إلى حد معقول من خلال تنفيذ أداة Apache Bench، مع حوالي 100 طلب في 10 ثوانٍ متزامنة: ab -n 100 -c 10 http://localhost:8000/_healthcheck
تم تصميم هذا المشروع وفقًا لنمط DDD + CQRS، والذي سيحتوي على ثلاثة أجزاء رئيسية:
Domain
.Application
Domain
. توسيع البنية السابقة، هذا هو هيكل المجلد الرئيسي داخل المشروع
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)