You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

24 rivejä
743 B

  1. doctrine:
  2. dbal:
  3. override_url: true
  4. url: '%env(resolve:DATABASE_URL)%'
  5. # IMPORTANT: You MUST configure your server version,
  6. # either here or in the DATABASE_URL env var (see .env file)
  7. #server_version: '13'
  8. mapping_types:
  9. enum: string
  10. types:
  11. uuid: Symfony\Bridge\Doctrine\Types\UuidType
  12. orm:
  13. auto_generate_proxy_classes: true
  14. naming_strategy: doctrine.orm.naming_strategy.underscore_number_aware
  15. auto_mapping: true
  16. mappings:
  17. App:
  18. is_bundle: false
  19. type: annotation
  20. dir: '%kernel.project_dir%/src/Entity'
  21. prefix: 'App\Entity'
  22. alias: App