Module galerie: Ajout d'une configuration minimale
[zf2.biz/galerie.git] / module / Galerie / config / module.config.php
diff --git a/module/Galerie/config/module.config.php b/module/Galerie/config/module.config.php
new file mode 100644 (file)
index 0000000..6c50559
--- /dev/null
@@ -0,0 +1,15 @@
+<?php
+
+return array(
+    'controllers' => array(
+        'invokables' => array(
+            'Galerie\Controller\Index' =>
+                'Galerie\Controller\IndexController'
+        ),
+    ),
+    'view_manager' => array(
+        'template_path_stack' => array(
+            'galerie' => __DIR__ . '/../view',
+        ),
+    ),
+);