Commit Graph

6 Commits

Author SHA1 Message Date
jens 98f4e126fc feat(person): initial Person domain with entity, model and DTO
PHP Unit Tests / test (push) Has been cancelled
- Add PersonEntity in Data layer with Doctrine ORM attributes
- Add PersonModel in Logic layer for business logic
- Add immutable PersonDto in Shared layer
- Configure doctrine/orm dependency in composer.json
- Add Doctrine deprecation triggers to phpunit configuration
2026-06-08 20:08:01 +02:00
jens e56d712503 test
PHP Unit Tests / test (push) Has been cancelled
2026-06-07 22:41:12 +02:00
jens 879a15432b workflow test
PHP Unit Tests / test (push) Has been cancelled
2026-06-07 22:39:56 +02:00
jens 3eb52302d1 workflow
PHP Unit Tests / test (push) Has been cancelled
2026-06-07 22:16:25 +02:00
jens c98dc0a198 phpunit 2026-06-07 22:14:33 +02:00
jens 788ddcd0b5 feat: Implement comprehensive architectural guidelines and clean code standards
- Establish feature-based architecture with clear separation between Logic, Data, and Shared layers
- Define directory structure conventions for controllers, entities, DTOs, managers, mappers, models, processors, providers, repositories, and services
- Implement Symfony 7.4+ compliance with proper Request handling (UI layer only)
- Enforce PHP 8+ attributes usage instead of annotations
- Set up proper DTO usage in UseCases with immutable properties
- Configure repository pattern with interfaces in Logic layer and implementations in Data layer
- Implement strict separation of concerns with UI layer handling Request objects exclusively
- Define clear naming conventions (PascalCase for feature names)
- Add shared components directory for reusable elements across features
- Establish HTTP status code constants usage instead of magic numbers
- Configure proper file placement for controllers in UI/Frontend, UI/Api, and UI/CLI subdirectories
- Enforce modern PHP practices with explicit return types and strict typing

This commit lays the foundation for a maintainable, scalable Symfony 7.4+ application following clean architecture principles and modern coding standards.
2026-06-02 22:05:40 +02:00