Blame view

common/config/main.php 473 Bytes
a63b5418   Administrator   first_commit
1
  <?php
a63b5418   Administrator   first_commit
2
  return [
4828b892   Mihail   after merge with ...
3
      'language' => 'ru-RU',
a63b5418   Administrator   first_commit
4
5
6
7
8
      'vendorPath' => dirname(dirname(__DIR__)) . '/vendor',
      'components' => [
          'cache' => [
              'class' => 'yii\caching\FileCache',
          ],
2509e17e   Administrator   JSON
9
10
11
12
13
14
15
          'urlManager' => [
              'enablePrettyUrl' => true,
              'showScriptName' => false,
              'rules' => [
                  'module/<module:\w+>/<controller:\w+>/<action:\w+>' => '<module>/<controller>/<action>',
              ]
          ],
a63b5418   Administrator   first_commit
16
      ],
a63b5418   Administrator   first_commit
17
  
2509e17e   Administrator   JSON
18
  ];