mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-20 14:43:49 +00:00
DX: embed test app inside bundle
This commit is contained in:
8
tests/app/config/packages/prod/deprecations.yaml
Normal file
8
tests/app/config/packages/prod/deprecations.yaml
Normal file
@@ -0,0 +1,8 @@
|
||||
# As of Symfony 5.1, deprecations are logged in the dedicated "deprecation" channel when it exists
|
||||
#monolog:
|
||||
# channels: [deprecation]
|
||||
# handlers:
|
||||
# deprecation:
|
||||
# type: stream
|
||||
# channels: [deprecation]
|
||||
# path: "%kernel.logs_dir%/%kernel.environment%.deprecations.log"
|
20
tests/app/config/packages/prod/doctrine.yaml
Normal file
20
tests/app/config/packages/prod/doctrine.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
doctrine:
|
||||
orm:
|
||||
auto_generate_proxy_classes: false
|
||||
metadata_cache_driver:
|
||||
type: pool
|
||||
pool: doctrine.system_cache_pool
|
||||
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
|
14
tests/app/config/packages/prod/monolog.yaml
Normal file
14
tests/app/config/packages/prod/monolog.yaml
Normal file
@@ -0,0 +1,14 @@
|
||||
monolog:
|
||||
handlers:
|
||||
graylog:
|
||||
type: gelf
|
||||
publisher:
|
||||
hostname: "%env(resolve:GELF_HOST)%"
|
||||
port: "%env(resolve:GELF_PORT)%"
|
||||
level: warning
|
||||
channels: ['!event']
|
||||
console:
|
||||
type: console
|
||||
process_psr_3_messages: false
|
||||
channels: ['!event', '!doctrine', '!console']
|
||||
bubble: false
|
3
tests/app/config/packages/prod/routing.yaml
Normal file
3
tests/app/config/packages/prod/routing.yaml
Normal file
@@ -0,0 +1,3 @@
|
||||
framework:
|
||||
router:
|
||||
strict_requirements: null
|
4
tests/app/config/packages/prod/webpack_encore.yaml
Normal file
4
tests/app/config/packages/prod/webpack_encore.yaml
Normal file
@@ -0,0 +1,4 @@
|
||||
#webpack_encore:
|
||||
# Cache the entrypoints.json (rebuild Symfony's cache when entrypoints.json changes)
|
||||
# Available in version 1.2
|
||||
#cache: true
|
Reference in New Issue
Block a user