Convert to singular path names and move ZF2 submodule
[zf2.biz/application_blanche.git] / config / application.config.php
diff --git a/config/application.config.php b/config/application.config.php
new file mode 100644 (file)
index 0000000..273ebbe
--- /dev/null
@@ -0,0 +1,15 @@
+<?php
+return array(
+    'module_paths' => array(
+        realpath(dirname(__DIR__) . '/module'),
+        realpath(dirname(__DIR__) . '/vendor'),
+    ),
+    'modules' => array(
+        'Application',
+    ),
+    'module_listener_options' => array( 
+        'config_cache_enabled'    => false,
+        'cache_dir'               => realpath(dirname(__DIR__) . '/data/cache'),
+        'application_environment' => getenv('APPLICATION_ENV'),
+    ),
+);