Daniel@0
|
1 imports:
|
Daniel@0
|
2 - { resource: parameters.yml }
|
Daniel@0
|
3 - { resource: assets_version.yml }
|
Daniel@0
|
4 - { resource: security.yml }
|
Daniel@0
|
5
|
Daniel@0
|
6 framework:
|
Daniel@0
|
7 #esi: ~
|
Daniel@0
|
8 #translator: { fallback: "%locale%" }
|
Daniel@0
|
9 secret: "%secret%"
|
Daniel@0
|
10 router:
|
Daniel@0
|
11 resource: "%kernel.root_dir%/config/routing.yml"
|
Daniel@0
|
12 strict_requirements: ~
|
Daniel@0
|
13 form: ~
|
Daniel@0
|
14 csrf_protection: ~
|
Daniel@0
|
15 validation: { enable_annotations: true }
|
Daniel@0
|
16 templating:
|
Daniel@0
|
17 engines: ['twig']
|
Daniel@0
|
18 assets_version: "%assets_version%"
|
Daniel@0
|
19 assets_base_urls: './$'
|
Daniel@0
|
20 default_locale: "%locale%"
|
Daniel@0
|
21 trusted_hosts: ~
|
Daniel@0
|
22 trusted_proxies: ~
|
Daniel@0
|
23 session:
|
Daniel@0
|
24 # handler_id set to null will use default session handler from php.ini
|
Daniel@0
|
25 handler_id: ~
|
Daniel@0
|
26 fragments: ~
|
Daniel@0
|
27 http_method_override: true
|
Daniel@0
|
28
|
Daniel@0
|
29 # Assets version
|
Daniel@0
|
30 kachkaev_assets_version:
|
Daniel@0
|
31 filename: "%kernel.root_dir%/config/assets_version.yml"
|
Daniel@0
|
32 parametername: assets_version
|
Daniel@0
|
33
|
Daniel@0
|
34 # Twig Configuration
|
Daniel@0
|
35 twig:
|
Daniel@0
|
36 debug: "%kernel.debug%"
|
Daniel@0
|
37 strict_variables: "%kernel.debug%"
|
Daniel@0
|
38
|
Daniel@0
|
39 # Assetic Configuration
|
Daniel@0
|
40 assetic:
|
Daniel@0
|
41 debug: "%kernel.debug%"
|
Daniel@0
|
42 use_controller: false # use app/console assetic:watch
|
Daniel@0
|
43 bundles: [DMLMainVisBundle,DMLVendorAssetsBundle]
|
Daniel@0
|
44 write_to: "%kernel.root_dir%/../$"
|
Daniel@0
|
45
|
Daniel@0
|
46 #java: /usr/bin/java
|
Daniel@0
|
47 filters:
|
Daniel@0
|
48 cssrewrite: ~
|
Daniel@0
|
49 less:
|
Daniel@0
|
50 node: /usr/local/bin/node
|
Daniel@0
|
51 node_paths: [/usr/local/lib/node, /usr/lib/node_modules/]
|
Daniel@0
|
52 uglifycss:
|
Daniel@0
|
53 bin: /usr/local/bin/uglifycss
|
Daniel@0
|
54 uglifyjs2:
|
Daniel@0
|
55 bin: /usr/local/bin/uglifyjs
|
Daniel@0
|
56 comments: /^!/
|
Daniel@0
|
57
|
Daniel@0
|
58 # Doctrine Configuration
|
Daniel@0
|
59 doctrine:
|
Daniel@0
|
60 dbal:
|
Daniel@0
|
61 driver: "%database_driver%"
|
Daniel@0
|
62 host: "%database_host%"
|
Daniel@0
|
63 port: "%database_port%"
|
Daniel@0
|
64 dbname: "%database_name%"
|
Daniel@0
|
65 user: "%database_user%"
|
Daniel@0
|
66 password: "%database_password%"
|
Daniel@0
|
67 server_version: "%database_server_version%"
|
Daniel@0
|
68 charset: UTF8
|
Daniel@0
|
69 # if using pdo_sqlite as your database driver:
|
Daniel@0
|
70 # 1. add the path in parameters.yml
|
Daniel@0
|
71 # e.g. database_path: "%kernel.root_dir%/data/data.db3"
|
Daniel@0
|
72 # 2. Uncomment database_path in parameters.yml.dist
|
Daniel@0
|
73 # 3. Uncomment next line:
|
Daniel@0
|
74 # path: "%database_path%"
|
Daniel@0
|
75
|
Daniel@0
|
76 orm:
|
Daniel@0
|
77 auto_generate_proxy_classes: "%kernel.debug%"
|
Daniel@0
|
78 auto_mapping: true
|
Daniel@0
|
79
|
Daniel@0
|
80 # Swiftmailer Configuration
|
Daniel@0
|
81 #swiftmailer:
|
Daniel@0
|
82 # transport: "%mailer_transport%"
|
Daniel@0
|
83 # host: "%mailer_host%"
|
Daniel@0
|
84 # username: "%mailer_user%"
|
Daniel@0
|
85 # password: "%mailer_password%"
|
Daniel@0
|
86 # spool: { type: memory }
|
Daniel@0
|
87
|
Daniel@0
|
88 jstmpl:
|
Daniel@0
|
89 source:
|
Daniel@0
|
90 patterns: ~
|