Part-DB.Part-DB-server/config/packages/doctrine.yaml

88 lines
2.7 KiB
YAML
Raw Normal View History

2019-02-23 16:49:38 +01:00
doctrine:
dbal:
2020-01-07 18:48:34 +01:00
url: '%env(resolve:DATABASE_URL)%'
2023-12-03 23:58:19 +01:00
# Required for DAMA doctrine test bundle
use_savepoints: true
2020-01-07 18:48:34 +01:00
# IMPORTANT: You MUST configure your server version,
# either here or in the DATABASE_URL env var (see .env file)
2019-02-23 16:49:38 +01:00
types:
# UTC datetimes
datetime:
class: App\Doctrine\Types\UTCDateTimeType
date:
class: App\Doctrine\Types\UTCDateTimeType
datetime_immutable:
class: App\Doctrine\Types\UTCDateTimeImmutableType
date_immutable:
class: App\Doctrine\Types\UTCDateTimeImmutableType
big_decimal:
class: App\Doctrine\Types\BigDecimalType
tinyint:
class: App\Doctrine\Types\TinyIntType
# This was removed in doctrine/orm 4.0 but we need it for the WebauthnKey entity
array:
class: App\Doctrine\Types\ArrayType
2022-10-31 21:13:27 +01:00
schema_filter: ~^(?!internal)~
# Only enable this when needed
profiling_collect_backtrace: false
2019-02-23 16:49:38 +01:00
orm:
auto_generate_proxy_classes: true
2023-05-27 20:51:05 +02:00
enable_lazy_ghost_objects: true
report_fields_where_declared: true
validate_xml_mapping: true
naming_strategy: doctrine.orm.naming_strategy.underscore_number_aware
2019-02-23 16:49:38 +01:00
auto_mapping: true
controller_resolver:
auto_mapping: true
2019-02-23 16:49:38 +01:00
mappings:
App:
type: attribute
2023-12-03 22:44:55 +01:00
is_bundle: false
2019-02-23 16:49:38 +01:00
dir: '%kernel.project_dir%/src/Entity'
prefix: 'App\Entity'
alias: App
dql:
string_functions:
2024-06-13 23:18:25 +02:00
regexp: App\Doctrine\Functions\Regexp
2023-07-29 16:42:27 +02:00
field: DoctrineExtensions\Query\Mysql\Field
field2: App\Doctrine\Functions\Field2
natsort: App\Doctrine\Functions\Natsort
array_position: App\Doctrine\Functions\ArrayPosition
2023-02-11 22:27:51 +01:00
when@test:
doctrine:
dbal:
# "TEST_TOKEN" is typically set by ParaTest
dbname_suffix: '_test%env(default::TEST_TOKEN)%'
when@prod: &prod
doctrine:
orm:
auto_generate_proxy_classes: false
proxy_dir: '%kernel.build_dir%/doctrine/orm/Proxies'
query_cache_driver:
type: pool
pool: doctrine.system_cache_pool
result_cache_driver:
type: pool
pool: doctrine.result_cache_pool
framework:
cache:
pools:
doctrine.result_cache_pool:
adapter: cache.app
doctrine.system_cache_pool:
adapter: cache.system
when@docker: *prod