forked from ezsystems/ezpublish-kernel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php-DEVELOPMENT
More file actions
23 lines (22 loc) · 851 Bytes
/
config.php-DEVELOPMENT
File metadata and controls
23 lines (22 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/**
* eZ Publish 5.x config.php file.
*
* Returns global application settings
* Usually contain settings needed to setup services needed for ezp startup.
*
* @copyright Copyright (C) eZ Systems AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*
* @doc Copy this file to config.php to get started!
*/
// Required: Settings bellow are runtime settings that needs to be set here, you can
// optionally also override any other setting here.
return array(
// The installation directory
'install_dir' => __DIR__,
// Path to the containerBuilder.php file used by service container
'container_builder_path' => __DIR__ . '/eZ/Publish/Core/settings/containerBuilder.php',
// The cache directory
'cache_dir' => __DIR__ . '/var/cache',
);