src/
├── Domain/
│ ├── Model/ # Entities, Value Objects, Enums
│ ├── Exception/ # Domain exceptions
│ ├── Repository/ # Interfaces only
│ └── Service/ # Domain services
├── Application/
│ ├── DTO/
│ ├── UseCase/
│ └── Interface/ # ClockInterface, TransactionManagerInterface
└── Infrastructure/
├── Controller/
├── Persistence/
│ ├── Repository/ # Doctrine impl
│ ├── Entity/ # Doctrine entities
│ └── Assembler/ # Domain ↔ Doctrine mapping
├── Scheduler/ # Expiry task
└── Adapter/ # Redis, MockUserProvider