diff --git a/doctrine/doctrine-bundle/2.4/config/packages/doctrine.yaml b/doctrine/doctrine-bundle/2.4/config/packages/doctrine.yaml index 4d59967b..8fe1dd40 100644 --- a/doctrine/doctrine-bundle/2.4/config/packages/doctrine.yaml +++ b/doctrine/doctrine-bundle/2.4/config/packages/doctrine.yaml @@ -15,3 +15,28 @@ doctrine: dir: '%kernel.project_dir%/src/Entity' prefix: 'App\Entity' alias: App + +when@test: + doctrine: + dbal: + # "TEST_TOKEN" is typically set by ParaTest + dbname_suffix: '_test%env(default::TEST_TOKEN)%' + +when@prod: + doctrine: + orm: + auto_generate_proxy_classes: false + 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 diff --git a/doctrine/doctrine-bundle/2.4/config/packages/prod/doctrine.yaml b/doctrine/doctrine-bundle/2.4/config/packages/prod/doctrine.yaml deleted file mode 100644 index 17299e28..00000000 --- a/doctrine/doctrine-bundle/2.4/config/packages/prod/doctrine.yaml +++ /dev/null @@ -1,17 +0,0 @@ -doctrine: - orm: - auto_generate_proxy_classes: false - 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 diff --git a/doctrine/doctrine-bundle/2.4/config/packages/test/doctrine.yaml b/doctrine/doctrine-bundle/2.4/config/packages/test/doctrine.yaml deleted file mode 100644 index 34c2ebcc..00000000 --- a/doctrine/doctrine-bundle/2.4/config/packages/test/doctrine.yaml +++ /dev/null @@ -1,4 +0,0 @@ -doctrine: - dbal: - # "TEST_TOKEN" is typically set by ParaTest - dbname_suffix: '_test%env(default::TEST_TOKEN)%' diff --git a/symfony/webpack-encore-bundle/1.9/config/packages/assets.yaml b/symfony/webpack-encore-bundle/1.9/config/packages/assets.yaml deleted file mode 100644 index 051d36dc..00000000 --- a/symfony/webpack-encore-bundle/1.9/config/packages/assets.yaml +++ /dev/null @@ -1,3 +0,0 @@ -framework: - assets: - json_manifest_path: '%kernel.project_dir%/public/build/manifest.json' diff --git a/symfony/webpack-encore-bundle/1.9/config/packages/prod/webpack_encore.yaml b/symfony/webpack-encore-bundle/1.9/config/packages/prod/webpack_encore.yaml deleted file mode 100644 index d0b3ba81..00000000 --- a/symfony/webpack-encore-bundle/1.9/config/packages/prod/webpack_encore.yaml +++ /dev/null @@ -1,4 +0,0 @@ -#webpack_encore: - # Cache the entrypoints.json (rebuild Symfony's cache when entrypoints.json changes) - # Available in version 1.2 - #cache: true diff --git a/symfony/webpack-encore-bundle/1.9/config/packages/test/webpack_encore.yaml b/symfony/webpack-encore-bundle/1.9/config/packages/test/webpack_encore.yaml deleted file mode 100644 index 02a76515..00000000 --- a/symfony/webpack-encore-bundle/1.9/config/packages/test/webpack_encore.yaml +++ /dev/null @@ -1,2 +0,0 @@ -#webpack_encore: -# strict_mode: false diff --git a/symfony/webpack-encore-bundle/1.9/config/packages/webpack_encore.yaml b/symfony/webpack-encore-bundle/1.9/config/packages/webpack_encore.yaml index fa2e39d6..46834f0c 100644 --- a/symfony/webpack-encore-bundle/1.9/config/packages/webpack_encore.yaml +++ b/symfony/webpack-encore-bundle/1.9/config/packages/webpack_encore.yaml @@ -33,3 +33,17 @@ webpack_encore: # Cache the entrypoints.json (rebuild Symfony's cache when entrypoints.json changes) # Put in config/packages/prod/webpack_encore.yaml # cache: true + +framework: + assets: + json_manifest_path: '%kernel.project_dir%/public/build/manifest.json' + +#when@prod: +# webpack_encore: +# # Cache the entrypoints.json (rebuild Symfony's cache when entrypoints.json changes) +# # Available in version 1.2 +# cache: true + +#when@test: +# webpack_encore: +# strict_mode: false