Blame view

common/config/main.php 441 Bytes
1755c393   Yarik   Basic template in...
1
2
3
4
5
6
7
  <?php
  return [
      'vendorPath' => dirname(dirname(__DIR__)) . '/vendor',
      'components' => [
          'cache' => [
              'class' => 'yii\caching\FileCache',
          ],
b313037a   Alexey Boroda   -Flesh widget ready
8
9
10
11
12
13
14
15
          'i18n'         => [
              'translations' => [
                  'core' => [
                      'class'    => 'yii\i18n\PhpMessageSource',
                      'basePath' => '@artbox-core/messages',
                  ],
              ],
          ],
1755c393   Yarik   Basic template in...
16
17
      ],
  ];