bowlofsoup / cake-dto-mapper
Map a CakePHP entity into a DTO
Installs: 34 515
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 2
Open Issues: 0
Requires
- php: >=7.4
- cakephp/cakephp: >=4.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.19
- phpunit/phpunit: ^7.5
README
Installation
composer require bowlofsoup/cake-dto-mapper
Quick overview
Has two main functionalities:
(1) Converts a CakePHP entity into a DTO; EntityToDtoMapper
.
Since CakePHP, by default, does not have actual properties on an entity,
an interface must be implemented on the entity to ensure that $this->_properties
is used.
(2) Converts an associative array into a DTO; ArrayToDtoMapper
.