doctrine: dbal: # configure these for your database server default_connection: projects connections: pim: url: '%env(resolve:DATABASE_PIM)%' driver: 'pdo_mysql' server_version: '5.7' charset: utf8mb4 default_table_options: charset: utf8mb4 collate: utf8mb4_unicode_ci projects: url: '%env(resolve:DATABASE_PROJECT)%' driver: 'pdo_mysql' server_version: '5.7' charset: utf8mb4 default_table_options: charset: utf8mb4 collate: utf8mb4_unicode_ci orm: default_entity_manager: projects entity_managers: projects: connection: projects mappings: App: is_bundle: false type: annotation dir: '%kernel.project_dir%/src/Domain/Entity' prefix: 'App\Domain\Entity' alias: App filters: deleted: class: 'App\Infrastructure\Repository\Filters\DeletedFilter' enabled: true resolve_target_entities: Maestro\Component\Workflow\Entity\Command: App\Domain\Entity\Workflow\Cmd Maestro\Component\Workflow\Entity\Transitions: App\Domain\Entity\Workflow\Transition Maestro\Component\Workflow\Entity\Configuration: App\Domain\Entity\Workflow\Configuration Maestro\Component\Workflow\Entity\Places: App\Domain\Entity\Workflow\Place