From d60fa20c5b775f3e02542cb861c1fa9a862096ae Mon Sep 17 00:00:00 2001 From: Matt Cockayne Date: Mon, 10 Oct 2011 22:03:57 +0100 Subject: [PATCH] added module config options for dependency and installation --- configs/application.config.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configs/application.config.php b/configs/application.config.php index d725788..3db882f 100644 --- a/configs/application.config.php +++ b/configs/application.config.php @@ -9,5 +9,8 @@ return new Zend\Config\Config(array( 'module_manager_options' => array( 'enable_config_cache' => false, 'cache_dir' => realpath(__DIR__ . '/../data/cache'), + 'enable_dependency_check' => false, + 'enable_self_installation' => false, + 'manifest_dir' => realpath(__DIR__ . '/../data'), ), )); -- 1.7.10.4