dekeysoft / yii2-domain
Implementation of DDD key concepts for Yii2.
Requires
- php: ^7.1
- php-kitchen/yii2-di: ^0.1
- yiisoft/yii2: ^2.0
Requires (Dev)
- php-kitchen/code-specs: ^4.0
- phpunit/phpunit: ^6.5
- satooshi/php-coveralls: ^1.0
Suggests
- yii2tech/ar-softdelete: Needed to support 'Recoverable' functionality.
- dev-master
- 0.0.x-dev
- v0.0.35
- v0.0.34
- v0.0.33
- v0.0.32
- v0.0.31
- v0.0.30
- v0.0.29
- v0.0.28
- v0.0.27
- v0.0.26
- v0.0.25
- v0.0.24
- v0.0.23
- v0.0.22
- v0.0.21
- v0.0.20
- v0.0.19
- 0.0.18
- 0.0.17
- 0.0.16
- 0.0.15
- 0.0.14
- 0.0.13
- 0.0.12
- 0.0.11
- 0.0.10
- 0.0.9
- 0.0.8
- 0.0.7
- 0.0.6
- 0.0.5
- 0.0.4
- 0.0.3
- 0.0.2
- 0.0.1
- 0.0.0
- dev-task/35-decouple-actions-classes
- dev-yii2-domain-17
- dev-yii2-domain-29
- dev-changed-attributes
- dev-yii2-domain-27
- dev-integrate-flow
- dev-restore-entity
This package is not auto-updated.
Last update: 2022-02-01 13:05:21 UTC
README
Yii2 Domain is a Domain Driven Design patterns implementation for Yii2.
Includes realization of a following patterns:
- Repository
- Entity
- Specification (very rough implementation through ActiveQuery)
- Strategy
Requirements
PHP >= 7.1
is required.
Getting Started
Run the following command to add Yii2 Domain to your project's composer.json
. See Packagist for specific versions.
composer require php-kitchen/yii2-domain
Or you can copy this library from:
For additional information and guides go to the project documentation
Overview
Goal of this library is to introduce Domain Driven Design(DDD) principles to Yii2 projects and to fix ActiveRecord problem of domain layer in applications with medium and large domain area.
Each model represented as a standalone directory that contains repository, entity, record and query classes. All of these classes represent a domain model.
DIRECTORY STRUCTURE OF A TYPICAL MODEL(AS EXAMPLE - USER MODEL)
user/ contains all of the classes that represents domain model
UserRepository model repository
UserEntity model entity(represents domain entity - not the DB table that containd entity information)
UserRecord DB record that contains entity information
ProfileRecord DB record with additional information thta also a part of the UserEntity.
UserQuery query class of model e.g. - specification of the entity
Code examples
Simple search and store:
$repository = new UserRepository(); $entity = $repository->findOneWithPk(1); // do some manipulations with entity $repository->validateAndSave($entity);
Complex criteria search and deleting:
$repository = new UserRepository(); $entity = $repository->find() ->active() ->withoutEmail() ->one(); // do some manipulations with entity $repository->delete($entity);
Note:
this library is designed to solve ActiveRecord problem of Yii 2. Don't use this library if you are starting a new project and looking for a solution that would allow you to build a decent architecture - you need a good framework that would allow you do build high-quality solution and Yii 2 is not a framework that would allow you to build high quality architecture and implement rich domain layer.
"Yii2Domain" library is a crutch designed to solve issues of domain layer caused by ActiveRecord in existing projects. There are few decent solutions to build domain layer in a new project:
- Spot ORM
- Symfony + Doctrine (preferable solution)
- Eloquent ORM (if you like Laravel and you are not working with enterprise applications)
Contributing
If you want to ask any questions, suggest improvements or just to talk with community and developers, join our server at Discord