-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathlocal.php.dist
More file actions
32 lines (28 loc) · 756 Bytes
/
local.php.dist
File metadata and controls
32 lines (28 loc) · 756 Bytes
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
<?php
return [
'debug' => true,
'config_cache_enabled' => false,
'doctrine' => [
'connection' => [
'orm_default' => [
'driverClass' => 'Doctrine\DBAL\Driver\PDOMySql\Driver',
'host' => 'localhost',
'port' => '3306',
'user' => 'root',
'password' => '',
'dbname' => 'cargo_sample',
'charset' => 'utf8',
'driverOptions' => [
1002 => "SET NAMES 'UTF8'"
],
]
],
],
'whoops' => [
'json_exceptions' => [
'display' => true,
'show_trace' => true,
'ajax_only' => true,
],
],
];