-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathconsole.php
33 lines (31 loc) · 839 Bytes
/
console.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
<?php
use yii\caching\FileCache;
use yii\log\FileTarget;
return [
'id' => 'timeclock-console',
'basePath' => dirname(__DIR__),
'vendorPath' => dirname(__DIR__) . '/../vendor',
'runtimePath' => dirname(__DIR__) . '/../runtime',
'bootstrap' => ['log'],
'timeZone' => 'Europe/Warsaw',
'language' => 'pl',
'controllerNamespace' => 'app\\commands',
'components' => [
'cache' => [
'class' => FileCache::class,
],
'log' => [
'traceLevel' => YII_DEBUG ? 3 : 0,
'targets' => [
[
'class' => FileTarget::class,
'levels' => ['error', 'warning'],
],
],
],
'db' => require 'db.php',
],
'params' => [
'company' => 'Company Name',
],
];