项目作者: agnostic-domain

项目描述 :
Simplify the hydration and extraction of agnostic domain objects
高级语言: PHP
项目地址: git://github.com/agnostic-domain/mapping.git
创建时间: 2020-03-23T21:13:43Z
项目社区:https://github.com/agnostic-domain/mapping

开源协议:MIT License

下载


Agnostic Domain Mapping



Agnostic Domain Mapping


Simplify the hydration and extraction of agnostic domain objects



Static analysis


Coding standard


License

Rationale


According to DDD domain should be guarded against external constraints and let’s say agnostic.
Most ORMs impose constraints in order to work properly
and even better ones aren’t free from the object-relational impedance mismatch.
Assuming that you are ruling out event sourcing and other alternatives (for whatever reason)
and still want to use ORM while having clean domain you need to decouple them.
This decoupling comes with the cost of mapping between two layers.
The goal of this library isn’t to eliminate this cost via magic
and another set of framework constraints, but rather to minimize.

Key ideas

  • Hydration and extraction is done via reflection.
    • Domain constructors should reflect creating a new model, not data from which it’s restored.
  • Objects can be mapped in many to many relation.
    • Domain shouldn’t be coupled with database’s tables.

Installation

  1. composer require agnostic-domain/mapping

Getting started

Mapping data object to domain object

  1. $article = adm(Article::class)
  2. ->id($data->id)
  3. ->title($data->title)($data);

Reverse mapping domain object to data object

  1. $data = adm()->data($article);
  2. $data->title = adm($article)->title();

Documentation