-
Notifications
You must be signed in to change notification settings - Fork 0
/
propel.php
34 lines (32 loc) · 1.16 KB
/
propel.php
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
<?php
use Abdyek\Whoo\Config\Propel as PropelConfig;
return [
'propel' => [
'database' => [
'connections' => [
'whoo' => [
'adapter' => PropelConfig::$ADAPTER,
'classname' => 'Propel\Runtime\Connection\ConnectionWrapper',
'dsn' => PropelConfig::$DSN,
'user' => PropelConfig::$USER,
'password' => PropelConfig::$PASSWORD,
'attributes' => [],
'settings' => [
'charset'=> 'utf8mb4',
'queries'=> [
'utf8' => 'SET NAMES utf8mb4 COLLATE utf8mb4_unicode_ci, COLLATION_CONNECTION = utf8mb4_unicode_ci, COLLATION_DATABASE = utf8mb4_unicode_ci, COLLATION_SERVER = utf8mb4_unicode_ci'
]
]
]
]
],
'runtime' => [
'defaultConnection' => 'whoo',
'connections' => ['whoo']
],
'generator' => [
'defaultConnection' => 'whoo',
'connections' => ['whoo']
]
]
];