Skip to content
Snippets Groups Projects
application.config.php 610 B
Newer Older
    'modules' => array(
        'VuFind',
    ),
    'module_listener_options' => array( 
        'config_glob_paths'    => array(
            'config/autoload/{,*.}{global,local}.php',
        ),
        'config_cache_enabled' => false,
        'cache_dir'            => 'data/cache',
        'module_paths' => array(
            './module',
            './vendor',
        ),
    ),
    'service_manager' => array(
        'use_defaults' => true,
        'factories'    => array(
        ),
    ),
);
if (PHP_SAPI == 'cli') {
    $config['modules'][] = 'VuFind\\CLI';
}
return $config;