This repository has been archived by the owner on Dec 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathconfig.yml
212 lines (191 loc) · 6.7 KB
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
imports:
- { resource: config_base.yml }
framework:
ide: "phpstorm://open?file=%%f&line=%%l"
esi: { enabled: true }
fragments: { path: /_fragment }
translator: { fallback: "%locale%" }
session:
name: "%session_prefix%"
# set true if no scripting languages need to access the cookie
cookie_httponly: false
assets:
version: v1
twig:
globals:
websitetitle: "%websitetitle%"
defaultlocale: "%defaultlocale%"
requiredlocales: "%requiredlocales%"
gtm_code: "%analytics.googletagmanager%"
#titlecolor: "#000000"
#titlebgcolor: "#2997CE"
doctrine:
orm:
entity_managers:
default:
auto_mapping: true
mappings:
gedmo_translatable:
type: annotation
prefix: Gedmo\Translatable\Entity
dir: "%kernel.root_dir%/../vendor/gedmo/doctrine-extensions/lib/Gedmo/Translatable/Entity"
alias: GedmoTranslatable # this one is optional and will default to the name set for the mapping
is_bundle: false
gedmo_translator:
type: annotation
prefix: Gedmo\Translator\Entity
dir: "%kernel.root_dir%/../vendor/gedmo/doctrine-extensions/lib/Gedmo/Translator/Entity"
alias: GedmoTranslator # this one is optional and will default to the name set for the mapping
is_bundle: false
gedmo_loggable:
type: annotation
prefix: Gedmo\Loggable\Entity
dir: "%kernel.root_dir%/../vendor/gedmo/doctrine-extensions/lib/Gedmo/Loggable/Entity"
alias: GedmoLoggable # this one is optional and will default to the name set for the mapping
is_bundle: false
gedmo_tree:
type: annotation
prefix: Gedmo\Tree\Entity
dir: "%kernel.root_dir%/../vendor/gedmo/doctrine-extensions/lib/Gedmo/Tree/Entity"
alias: GedmoTree # this one is optional and will default to the name set for the mapping
is_bundle: false
dbal:
driver: pdo_mysql
options:
# PDO::MYSQL_ATTR_INIT_COMMAND
1002: "SET sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''))"
stof_doctrine_extensions:
default_locale: "%defaultlocale%"
translation_fallback: true
orm:
default:
loggable: true
translatable: true
sluggable: true
liip_imagine:
resolvers:
default:
web_path:
cache_prefix: uploads/cache
loaders:
default:
filesystem:
data_root: "%liip_imagine_filesystem_data_root%"
driver: imagick
data_loader: default
filter_sets:
optim:
quality: 85
format: jpg
filters:
strip: ~
optimjpg:
quality: 85
format: jpg
filters:
strip: ~
optimpng:
quality: 85
format: png
filters:
strip: ~
# ImagePagePart srcset JPG filters
image_huge_jpg:
quality: 95
format: jpg
filters:
strip: ~
thumbnail: { size: [2400,null], mode: outbound, allow_upscale: false }
image_big_jpg:
quality: 95
format: jpg
filters:
strip: ~
thumbnail: { size: [1200,null], mode: outbound, allow_upscale: false }
image_medium_jpg:
quality: 95
format: jpg
filters:
strip: ~
thumbnail: { size: [600,null], mode: outbound, allow_upscale: false }
image_small_jpg:
quality: 95
format: jpg
filters:
strip: ~
thumbnail: { size: [400,null], mode: outbound, allow_upscale: false }
# ImagePagePart srcset PNG filters
image_huge_png:
quality: 95
format: png
filters:
strip: ~
thumbnail: { size: [2400,null], mode: outbound, allow_upscale: false }
image_big_png:
quality: 95
format: png
filters:
strip: ~
thumbnail: { size: [1200,null], mode: outbound, allow_upscale: false }
image_medium_png:
quality: 95
format: png
filters:
strip: ~
thumbnail: { size: [600,null], mode: outbound, allow_upscale: false }
image_small_png:
quality: 95
format: png
filters:
strip: ~
thumbnail: { size: [400,null], mode: outbound, allow_upscale: false }
services:
twig.extension.text:
class: Twig_Extensions_Extension_Text
tags:
- { name: twig.extension }
twig.extension.intl:
class: Twig_Extensions_Extension_Intl
tags:
- { name: twig.extension }
kunstmaan_logging_introspection:
class: Monolog\Processor\IntrospectionProcessor
tags:
- { name: monolog.processor }
kunstmaan_logging_web:
class: Symfony\Bridge\Monolog\Processor\WebProcessor
tags:
- { name: monolog.processor }
kunstmaan_logging_formatter:
class: Monolog\Formatter\LineFormatter
kunstmaan_newrelic_naming_strategy:
class: Kunstmaan\UtilitiesBundle\Helper\UrlTransactionNamingStrategy
gedmo.listener.tree:
class: Gedmo\Tree\TreeListener
tags:
- { name: doctrine.event_subscriber, connection: default }
calls:
- [ setAnnotationReader, [ "@annotation_reader" ] ]
fos_user.doctrine_registry:
alias: doctrine
white_october_pagerfanta:
default_view: twitter_bootstrap
kunstmaan_translator:
enabled: true
managed_locales: ['nl', 'en', 'de', 'fr']
kunstmaan_page_part:
extended_pagepart_chooser: true
kunstmaan_admin:
admin_password: -adminpwd-
dashboard_route: 'kunstmaan_dashboard'
ekino_new_relic:
enabled: true
logging: false
log_exceptions: true
log_commands: true
transaction_naming: service
transaction_naming_service: kunstmaan_newrelic_naming_strategy
fos_user:
from_email:
address: "%mailer_from_address%"
sender_name: "%mailer_from_name%"