zenbox / ddd
Domain Driven Design in PHP
Installs: 1 383
Dependents: 1
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 1
Open Issues: 0
Requires
- php: ^8.1
- beberlei/assert: ^3.3
- laminas/laminas-code: ^4.5
- ramsey/uuid: ^4.3
Requires (Dev)
- phpunit/phpunit: ^9.5
Suggests
- zenbox/doctrine: Provides Doctrine ORM pack
This package is auto-updated.
Last update: 2025-03-29 00:44:56 UTC
README
Domain Driven Design in PHP
- Assert beberlei/assert
- UuidIdentifier ramsey/uuid
- Command
- Query
- Specification
Installation
Using Composer:
composer require zenbox/ddd
Examples
See example/ for some examples.
Doctrine UUID type
Add Doctrine custom type uuid
<?php use ZenBox\Ddd\Infrastructure\Persistence\Doctrine\UuidType; Type::addType(UuidType::NAME, UuidType::class);