This repository was archived by the owner on Dec 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yml
More file actions
53 lines (47 loc) · 1.39 KB
/
config.yml
File metadata and controls
53 lines (47 loc) · 1.39 KB
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
# http://www.whitewashing.de/2012/02/25/symfony2_controller_testing.html
# Tests/App/config.yml
framework:
secret: secret
test: ~
router: { resource: "%kernel.root_dir%/routing.yml" }
form: true
csrf_protection: true
templating: { engines: ['twig'] }
session:
# handler_id set to null will use default session handler from php.ini
handler_id: ~
storage_id: session.storage.filesystem
profiler:
collect: false
monolog:
handlers:
main:
type: fingers_crossed
action_level: error
handler: nested
nested:
type: stream
path: "%kernel.logs_dir%/%kernel.environment%.log"
level: debug
liip_functional_test:
cache_db:
sqlite: liip_functional_test.services_database_backup.sqlite
doctrine:
dbal:
default_connection: default
connections:
default:
driver: pdo_sqlite
path: "%kernel.cache_dir%/test.db"
orm:
auto_generate_proxy_classes: "%kernel.debug%"
auto_mapping: true
parameters:
twitter_consumer_key: null
twitter_consumer_secret: null
twitter_token: null
twitter_token_secret: null
services:
Acme\DataFixtures\:
resource: '../DataFixtures'
tags: ['doctrine.fixture.orm']