Initial wiring of ServiceManager over DI for MVC
[zf2.biz/galerie.git] / module / Application / config / module.config.php
index 4d5eef9..275f8b3 100644 (file)
@@ -1,26 +1,5 @@
 <?php
 return array(
-    'layout'                => 'layout/layout.phtml',
-    'display_exceptions'    => true,
-    'di'                    => array(
-        'instance' => array(
-            'alias' => array(
-                'index' => 'Application\Controller\IndexController',
-                'error' => 'Application\Controller\ErrorController',
-                'view'  => 'Zend\View\PhpRenderer',
-            ),
-            'Zend\View\PhpRenderer' => array(
-                'parameters' => array(
-                    'resolver' => 'Zend\View\TemplatePathStack',
-                    'options'  => array(
-                        'script_paths' => array(
-                            'application' => __DIR__ . '/../view',
-                        ),
-                    ),
-                ),
-            ),
-        ),
-    ),
     'routes' => array(
         'default' => array(
             'type'    => 'Zend\Mvc\Router\Http\Segment',
@@ -31,7 +10,7 @@ return array(
                     'action'     => '[a-zA-Z][a-zA-Z0-9_-]*',
                 ),
                 'defaults' => array(
-                    'controller' => 'index',
+                    'controller' => 'IndexController',
                     'action'     => 'index',
                 ),
             ),
@@ -41,10 +20,32 @@ return array(
             'options' => array(
                 'route'    => '/',
                 'defaults' => array(
-                    'controller' => 'index',
+                    'controller' => 'IndexController',
                     'action'     => 'index',
                 ),
             ),
         ),
     ),
-);
+    'controllers' => array(
+        'IndexController' => 'Application\Controller\IndexController'
+    ),
+    'view' => array(
+        'display_not_found_reason' => true,
+        'display_exceptions' => true,
+        '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',
+            'error/404'     => __DIR__ . '/../view/error/404.phtml',
+            'error/index'   => __DIR__ . '/../view/error/index.phtml',
+        ),
+        'template_path_stack' => array(
+            'application' => __DIR__ . '/../view',
+        ),
+    ),
+    'db' => array(
+        'driver' => 'Pdo-Sqlite',
+        'dbname' => 'path/to/data/database.sqlite'
+    )
+);
\ No newline at end of file