-
Notifications
You must be signed in to change notification settings - Fork 1
/
mode_test.php
48 lines (42 loc) · 1.23 KB
/
mode_test.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
/**
* Test configuration
* Usage:
* - Local website
* - Local DB
* - Standard production error pages (404, 500, etc.)
*/
return [
'yiiDebug' => true,
// This is the specific Web application configuration for this mode.
// Supplied config elements will be merged into the main config array.
'configWeb' => [
'components' => [
'assetManager' => [
'linkAssets' => true,
],
'db' => [
'dsn' => '...',
'username' => '...',
'password' => '...',
],
'log' => [
'traceLevel' => 3,
'targets' => [
[
'class' => yii\log\FileTarget::class,
'levels' => ['error', 'warning', 'info'],
],
],
],
'mailer' => [
'useFileTransport' => true,
],
],
],
// This is the Console application configuration. Any writable
// console application properties can be configured here.
// Leave array empty if not used.
// Use value 'inherit' to copy from generated configWeb.
'configConsole' => []
];