Module galerie: Ajout d'une configuration minimale
[zf2.biz/galerie.git] / module / Galerie / config / module.config.php
1 <?php
2
3 return array(
4     'controllers' => array(
5         'invokables' => array(
6             'Galerie\Controller\Index' =>
7                 'Galerie\Controller\IndexController'
8         ),
9     ),
10     'view_manager' => array(
11         'template_path_stack' => array(
12             'galerie' => __DIR__ . '/../view',
13         ),
14     ),
15 );