-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.inc.php
43 lines (42 loc) · 1.21 KB
/
config.inc.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
34
35
36
37
38
39
40
41
42
43
<?php
return array_replace_recursive([
'config' => [
'modules' => [
'api' => [
'controller' => [
'namespace' => 'CMS\\Controllers\\Api\\',
'class_suffix' => 'Controller',
'method_suffix' => 'Action'
]
],
'frontend' => [
'controller' => [
'namespace' => 'CMS\\Controllers\\Frontend\\',
'class_suffix' => 'Controller',
'method_suffix' => 'Action'
]
]
],
'view' => [
'theme_path' => 'themes/',
'cache_path' => 'cache/twig/'
],
'database' => [
'host' => 'localhost',
'shem' => 'vuex_cms',
'user' => 'root',
'pass' => 'vagrant'
],
'app' => [
'path' => __DIR__ . '/',
'cache_path' => 'cache/'
],
'debug' => true,
'plugin' => [
'path' => 'ext/'
]
],
'settings' => [
'displayErrorDetails' => true
]
], ($f = __DIR__ . '/config.user.php') && is_file($f) ? require_once $f : []);