doctrine.yaml 522 B

1234567891011121314151617
  1. doctrine:
  2. dbal:
  3. url: '%env(resolve:DATABASE_URL)%'
  4. # IMPORTANT: You MUST configure your server version,
  5. # either here or in the DATABASE_URL env var (see .env file)
  6. server_version: '5.7'
  7. orm:
  8. auto_generate_proxy_classes: true
  9. auto_mapping: true
  10. mappings:
  11. App:
  12. is_bundle: false
  13. type: annotation
  14. dir: '%kernel.project_dir%/src/Entity'
  15. prefix: 'App\Entity'
  16. alias: App