Commit | Line | Data |
---|---|---|
dec6d031 JB |
1 | framework: |
2 | secret: '%env(APP_SECRET)%' | |
3 | #default_locale: en | |
4 | #csrf_protection: true | |
5 | #http_method_override: true | |
6 | ||
7 | # Enables session support. Note that the session will ONLY be started if you read or write from it. | |
8 | # Remove or comment this section to explicitly disable session support. | |
9 | session: | |
10 | handler_id: ~ | |
11 | ||
12 | #esi: true | |
13 | #fragments: true | |
14 | php_errors: | |
15 | log: true | |
16 | ||
17 | cache: | |
18 | # Put the unique name of your app here: the prefix seed | |
19 | # is used to compute stable namespaces for cache keys. | |
20 | #prefix_seed: your_vendor_name/app_name | |
21 | ||
22 | # The app cache caches to the filesystem by default. | |
23 | # Other options include: | |
24 | ||
25 | # Redis | |
26 | #app: cache.adapter.redis | |
27 | #default_redis_provider: redis://localhost | |
28 | ||
29 | # APCu (not recommended with heavy random-write workloads as memory fragmentation can cause perf issues) | |
30 | #app: cache.adapter.apcu | |
9b636c8d JB |
31 | |
32 | serializer: | |
33 | enabled: true | |
98cb0edc JB |
34 | |
35 | sensio_framework_extra: | |
36 | view: { annotations: true } | |
f0640a52 | 37 | request: { converters: true } |