Merge remote-tracking branch 'akrabat/hotfix/default-route'
[zf2.biz/galerie.git] / module / Application / config / module.config.php
index 40d5db9..8015ff5 100644 (file)
@@ -11,7 +11,7 @@ return array(
                         'action'     => '[a-zA-Z][a-zA-Z0-9_-]*',
                     ),
                     'defaults' => array(
-                        'controller' => 'IndexController',
+                        'controller' => 'index',
                         'action'     => 'index',
                     ),
                 ),
@@ -21,15 +21,17 @@ return array(
                 'options' => array(
                     'route'    => '/',
                     'defaults' => array(
-                        'controller' => 'IndexController',
+                        'controller' => 'index',
                         'action'     => 'index',
                     ),
                 ),
             ),
         ),
     ),
-    'controllers' => array(
-        'IndexController' => 'Application\Controller\IndexController'
+    'controller' => array(
+        'classes' => array(
+            'index' => 'Application\Controller\IndexController'
+        ),
     ),
     'view_manager' => array(
         'display_not_found_reason' => true,