[zen-33] Updated to new controller scoped container
[zf2.biz/galerie.git] / module / Application / config / module.config.php
index 275f8b3..b68e949 100644 (file)
@@ -1,39 +1,44 @@
 <?php
 return array(
-    'routes' => array(
-        'default' => array(
-            'type'    => 'Zend\Mvc\Router\Http\Segment',
-            'options' => array(
-                'route'    => '/[:controller[/:action]]',
-                'constraints' => array(
-                    'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
-                    'action'     => '[a-zA-Z][a-zA-Z0-9_-]*',
-                ),
-                'defaults' => array(
-                    'controller' => 'IndexController',
-                    'action'     => 'index',
+    'router' => array(
+        'routes' => array(
+            'default' => array(
+                'type'    => 'Zend\Mvc\Router\Http\Segment',
+                'options' => array(
+                    'route'    => '/[:controller[/:action]]',
+                    'constraints' => array(
+                        'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
+                        'action'     => '[a-zA-Z][a-zA-Z0-9_-]*',
+                    ),
+                    'defaults' => array(
+                        'controller' => 'IndexController',
+                        'action'     => 'index',
+                    ),
                 ),
             ),
-        ),
-        'home' => array(
-            'type' => 'Zend\Mvc\Router\Http\Literal',
-            'options' => array(
-                'route'    => '/',
-                'defaults' => array(
-                    'controller' => 'IndexController',
-                    'action'     => 'index',
+            'home' => array(
+                'type' => 'Zend\Mvc\Router\Http\Literal',
+                'options' => array(
+                    'route'    => '/',
+                    'defaults' => array(
+                        'controller' => 'IndexController',
+                        'action'     => 'index',
+                    ),
                 ),
             ),
         ),
     ),
-    'controllers' => array(
-        'IndexController' => 'Application\Controller\IndexController'
+    'controller' => array(
+        'classes' => array(
+            'IndexController' => 'Application\Controller\IndexController'
+        ),
     ),
-    'view' => array(
+    'view_manager' => array(
         'display_not_found_reason' => true,
-        'display_exceptions' => true,
-        'not_found_template' => 'error/404',
-        'exception_template' => 'error/index',
+        'display_exceptions'       => true,
+        'doctype'                  => 'HTML5',
+        'not_found_template'       => 'error/404',
+        'exception_template'       => 'error/index',
         'template_map' => array(
             'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
             'index/index'   => __DIR__ . '/../view/index/index.phtml',
@@ -44,8 +49,4 @@ return array(
             'application' => __DIR__ . '/../view',
         ),
     ),
-    'db' => array(
-        'driver' => 'Pdo-Sqlite',
-        'dbname' => 'path/to/data/database.sqlite'
-    )
-);
\ No newline at end of file
+);