doctrine.yaml 623 B

123456789101112131415161718
  1. doctrine:
  2. dbal:
  3. # TODO In case of special URL characters, this needs to be handled differently
  4. url: '%env(resolve:DATABASE_URL)%'
  5. charset: UTF8
  6. orm:
  7. auto_generate_proxy_classes: true
  8. naming_strategy: doctrine.orm.naming_strategy.underscore_number_aware
  9. auto_mapping: true
  10. # Defined in the compiler pass to use SchemaDefDriver
  11. # mappings:
  12. # App:
  13. # is_bundle: false
  14. # type: staticphp
  15. # dir: '%kernel.project_dir%/src/Entity'
  16. # prefix: 'App\Entity'
  17. # alias: App