]>
Commit | Line | Data |
---|---|---|
93fd4692 NL |
1 | imports: |
2 | - { resource: config.yml } | |
3 | ||
4 | framework: | |
5 | router: | |
6 | resource: "%kernel.root_dir%/config/routing_dev.yml" | |
7 | strict_requirements: true | |
2bc9cad7 JB |
8 | profiler: |
9 | only_exceptions: false | |
93fd4692 NL |
10 | |
11 | web_profiler: | |
12 | toolbar: true | |
13 | intercept_redirects: false | |
14 | ||
15 | monolog: | |
16 | handlers: | |
17 | main: | |
2bc9cad7 JB |
18 | type: stream |
19 | path: "%kernel.logs_dir%/%kernel.environment%.log" | |
20 | level: debug | |
23634d5d | 21 | channels: ['!event'] |
93fd4692 | 22 | console: |
2bc9cad7 | 23 | type: console |
93fd4692 NL |
24 | bubble: false |
25 | verbosity_levels: | |
26 | VERBOSITY_VERBOSE: INFO | |
27 | VERBOSITY_VERY_VERBOSE: DEBUG | |
23634d5d | 28 | channels: ['!event', '!doctrine'] |
93fd4692 | 29 | console_very_verbose: |
2bc9cad7 | 30 | type: console |
93fd4692 NL |
31 | bubble: false |
32 | verbosity_levels: | |
33 | VERBOSITY_VERBOSE: NOTICE | |
34 | VERBOSITY_VERY_VERBOSE: NOTICE | |
35 | VERBOSITY_DEBUG: DEBUG | |
73cd160b | 36 | channels: [doctrine] |
93fd4692 | 37 | |
6894d48e J |
38 | swiftmailer: |
39 | # see http://mailcatcher.me/ | |
40 | transport: smtp | |
41 | host: 'localhost' | |
42 | port: 1025 | |
b3f4a11a NL |
43 | |
44 | # If you want to use cache for queries used in WallabagExtension | |
45 | # Uncomment the following lines | |
46 | #doctrine: | |
47 | # orm: | |
48 | # metadata_cache_driver: apcu | |
49 | # result_cache_driver: apcu | |
50 | # query_cache_driver: apcu |