|
24 | 24 | // modules are loaded. These effectively override configuration |
25 | 25 | // provided by modules themselves. Paths may use GLOB_BRACE notation. |
26 | 26 | 'config_glob_paths' => [ |
27 | | - 'config/autoload/{{,*.}global,{,*.}local}.php', |
| 27 | + realpath(__DIR__) . '/autoload/{{,*.}global,{,*.}local}.php', |
28 | 28 | ], |
29 | 29 |
|
30 | 30 | // Whether or not to enable a configuration cache. |
31 | 31 | // If enabled, the merged configuration will be cached and used in |
32 | 32 | // subsequent requests. |
33 | | - //'config_cache_enabled' => $booleanValue, |
| 33 | + 'config_cache_enabled' => true, |
34 | 34 |
|
35 | 35 | // The key used to create the configuration cache file name. |
36 | | - //'config_cache_key' => $stringKey, |
| 36 | + 'config_cache_key' => 'application.config.cache', |
37 | 37 |
|
38 | 38 | // Whether or not to enable a module class map cache. |
39 | 39 | // If enabled, creates a module class map cache which will be used |
40 | 40 | // by in future requests, to reduce the autoloading process. |
41 | | - //'module_map_cache_enabled' => $booleanValue, |
| 41 | + 'module_map_cache_enabled' => true, |
42 | 42 |
|
43 | 43 | // The key used to create the class map cache file name. |
44 | | - //'module_map_cache_key' => $stringKey, |
| 44 | + 'module_map_cache_key' => 'application.module.cache', |
45 | 45 |
|
46 | 46 | // The path in which to cache merged configuration. |
47 | | - //'cache_dir' => $stringPath, |
| 47 | + 'cache_dir' => 'data/cache/', |
48 | 48 |
|
49 | 49 | // Whether or not to enable modules dependency checking. |
50 | 50 | // Enabled by default, prevents usage of modules that depend on other modules |
|
53 | 53 | ], |
54 | 54 |
|
55 | 55 | // Used to create an own service manager. May contain one or more child arrays. |
56 | | - //'service_listener_options' => array( |
57 | | - // array( |
| 56 | + //'service_listener_options' => [ |
| 57 | + // [ |
58 | 58 | // 'service_manager' => $stringServiceManagerName, |
59 | 59 | // 'config_key' => $stringConfigKey, |
60 | 60 | // 'interface' => $stringOptionalInterface, |
61 | 61 | // 'method' => $stringRequiredMethodName, |
62 | | - // ), |
63 | | - // ), |
| 62 | + // ], |
| 63 | + // ], |
64 | 64 |
|
65 | 65 | // Initial configuration with which to seed the ServiceManager. |
66 | 66 | // Should be compatible with Zend\ServiceManager\Config. |
67 | | - // 'service_manager' => array(), |
| 67 | + // 'service_manager' => [], |
68 | 68 | ]; |
0 commit comments