788ddcd0b5
- 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.
20 lines
687 B
YAML
20 lines
687 B
YAML
framework:
|
|
cache:
|
|
# Unique name of your app: used to compute stable namespaces for cache keys.
|
|
#prefix_seed: your_vendor_name/app_name
|
|
|
|
# The "app" cache stores to the filesystem by default.
|
|
# The data in this cache should persist between deploys.
|
|
# Other options include:
|
|
|
|
# Redis
|
|
#app: cache.adapter.redis
|
|
#default_redis_provider: redis://localhost
|
|
|
|
# APCu (not recommended with heavy random-write workloads as memory fragmentation can cause perf issues)
|
|
#app: cache.adapter.apcu
|
|
|
|
# Namespaced pools use the above "app" backend by default
|
|
#pools:
|
|
#my.dedicated.cache: null
|