Blame view

common/config/main.php 643 Bytes
1755c393   Yarik   Basic template in...
1
  <?php
6966d71b   Yarik   Makeup
2
3
4
5
6
7
8
9
10
11
      return [
          'vendorPath' => dirname(dirname(__DIR__)) . '/vendor',
          'components' => [
              'cache'  => [
                  'class' => 'yii\caching\FileCache',
              ],
              'i18n'   => [
                  'translations' => [
                      'core' => [
                          'class'    => 'yii\i18n\PhpMessageSource',
9576f402   Yarik   Namespaces and al...
12
                          'basePath' => '@artbox/core/messages',
6966d71b   Yarik   Makeup
13
                      ],
b313037a   Alexey Boroda   -Flesh widget ready
14
15
                  ],
              ],
6966d71b   Yarik   Makeup
16
17
18
19
              'filedb' => [
                  'class' => 'yii2tech\filedb\Connection',
                  'path'  => '@common/config',
              ],
b313037a   Alexey Boroda   -Flesh widget ready
20
          ],
6966d71b   Yarik   Makeup
21
      ];