text changes to registration mail content
[namibia] / config / application.config.php
1 <?php
2 return array(
3     // This should be an array of module namespaces used in the application.
4     'modules' => array(
5         'DoctrineModule',
6         'DoctrineORMModule',
7         'Config',
8         'Utility',
9         'Newsletter',
10         'Location',
11         'Person',
12         'Repo',
13         'Workspace',
14         'Application',
15         'Auction',
16         'Dispute',
17         'Company',
18         'User',
19         'Stock',
20         'Valuation',
21         'PriceGuide',
22         'Fixture',
23         'Retail',
24         'Report',
25         'Adherence',
26         'Statistical'
27     ),
28
29     // These are various options for the listeners attached to the ModuleManager
30     'module_listener_options' => array(
31         // This should be an array of paths in which modules reside.
32         // If a string key is provided, the listener will consider that a module
33         // namespace, the value of that key the specific path to that module's
34         // Module class.
35         'module_paths' => array(
36             './module',
37             './vendor'
38         ),
39
40         // An array of paths from which to glob configuration files after
41         // modules are loaded. These effectively overide configuration
42         // provided by modules themselves. Paths may use GLOB_BRACE notation.
43         'config_glob_paths' => array(
44             'config/autoload/{,*.}{global,local}.php',
45         ),
46
47         // Whether or not to enable a configuration cache.
48         // If enabled, the merged configuration will be cached and used in
49         // subsequent requests.
50         'config_cache_enabled' => false,
51
52         // The key used to create the configuration cache file name.
53         'config_cache_key' => 'app_config',
54
55         // Whether or not to enable a module class map cache.
56         // If enabled, creates a module class map cache which will be used
57         // by in future requests, to reduce the autoloading process.
58         'module_map_cache_enabled' => true,
59
60         // The key used to create the class map cache file name.
61         'module_map_cache_key' => 'module_map',
62
63         // The path in which to cache merged configuration.
64         'cache_dir' => 'data/cache/',
65
66         // Whether or not to enable modules dependency checking.
67         // Enabled by default, prevents usage of modules that depend on other modules
68         // that weren't loaded.
69         'check_dependencies' => false,
70     )
71
72     // Used to create an own service manager. May contain one or more child arrays.
73     //'service_listener_options' => array(
74     //     array(
75     //         'service_manager' => $stringServiceManagerName,
76     //         'config_key'      => $stringConfigKey,
77     //         'interface'       => $stringOptionalInterface,
78     //         'method'          => $stringRequiredMethodName,
79     //     ),
80     // )
81
82     // Initial configuration with which to seed the ServiceManager.
83     // Should be compatible with Zend\ServiceManager\Config.
84     // 'service_manager' => array(),
85 );