doctrine: dbal: # configure these for your database server driver: '%env(resolve:DATABASE_DRIVER)%' server_version: '%env(resolve:DATABASE_VERSION)%' charset: utf8 default_table_options: charset: utf8 collate: utf8mb4_unicode_ci options: !php/const \PDO::ATTR_PERSISTENT: true url: '%env(resolve:DATABASE_URL)%' orm: auto_generate_proxy_classes: true naming_strategy: doctrine.orm.naming_strategy.default auto_mapping: true mappings: App: is_bundle: false dir: '%kernel.project_dir%/src/Entity' prefix: 'App\Entity' alias: App