text changes to registration mail content
[namibia] / module / Statistical / config / module.config.php
1 <?php
2 namespace Statistical;
3 return array(
4     'doctrine' => array(
5         'driver' => array(
6             __NAMESPACE__ . '_driver' => array(
7                 'class' => 'Doctrine\ORM\Mapping\Driver\AnnotationDriver',
8                 'cache' => 'array',
9                 'paths' => array(__DIR__ . '/../src/' . __NAMESPACE__ . '/Entity')
10             ),
11             'orm_default' => array(
12                 'drivers' => array(
13                     __NAMESPACE__ . '\Entity' => __NAMESPACE__ . '_driver'
14                 )
15             )
16         )
17     ),
18     'controllers' => array(
19             'invokables' => array(
20                     'Statistical\Controller\Statistical' => 'Statistical\Controller\StatisticalController'
21             ),
22     ),
23     'console' => array(
24             'router' => array(
25                     'routes' => array(
26                             'clickreport' => array(
27                                     'options' => array(
28                                             'route'    => 'click report',
29                                             'defaults' => array(
30                                                     'controller' => 'Statistical\Controller\Statistical',
31                                                     'action'     => 'clickReport'
32                                             )
33                                     )
34                             )
35                     )
36             )
37     )
38 );