[zen-33] Updated to new controller scoped container
[zf2.biz/galerie.git] / module / Application / config / module.config.php
index dc3bd81..b68e949 100644 (file)
@@ -28,12 +28,15 @@ return array(
             ),
         ),
     ),
-    'controllers' => array(
-        'IndexController' => 'Application\Controller\IndexController'
+    'controller' => array(
+        'classes' => array(
+            'IndexController' => 'Application\Controller\IndexController'
+        ),
     ),
     'view_manager' => array(
         'display_not_found_reason' => true,
         'display_exceptions'       => true,
+        'doctype'                  => 'HTML5',
         'not_found_template'       => 'error/404',
         'exception_template'       => 'error/index',
         'template_map' => array(
@@ -46,8 +49,4 @@ return array(
             'application' => __DIR__ . '/../view',
         ),
     ),
-    'db' => array(
-        'driver' => 'Pdo-Sqlite',
-        'dbname' => 'path/to/data/database.sqlite'
-    )
 );