Blame view

common/config/main.php 473 Bytes
e4e4ce76   Administrator   update rep
1
2
  <?php
  return [
a4535268   Administrator   Importers CRUD
3
      'language' => 'ru-RU',
e4e4ce76   Administrator   update rep
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
      'vendorPath' => dirname(dirname(__DIR__)) . '/vendor',
      'components' => [
          'cache' => [
              'class' => 'yii\caching\FileCache',
          ],
          'urlManager' => [
              'enablePrettyUrl' => true,
              'showScriptName' => false,
              'rules' => [
                  'module/<module:\w+>/<controller:\w+>/<action:\w+>' => '<module>/<controller>/<action>',
              ]
          ],
      ],
  
  ];