text changes to registration mail content
[namibia] / module / PriceGuide / config / module.config.php
1 <?php
2 namespace PriceGuide;
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                                                 'PriceGuide\Controller\PriceGuide' => 'PriceGuide\Controller\PriceGuideController'
21                                 ),
22                 ),
23             'console' => array(
24                 'router' => array(
25                     'routes' => array(
26                         'notify' => array(
27                             'options' => array(
28                                 'route'    => 'priceguide notify <pgId> <cmpId> <prfId>',
29                                 'defaults' => array(
30                                     'controller' => 'PriceGuide\Controller\PriceGuide',
31                                     'action'     => 'notify'
32                                 )
33                             )
34                         ),
35                         'process' => array(
36                             'options' => array(
37                                 'route'    => 'priceguide process',
38                                 'defaults' => array(
39                                     'controller' => 'PriceGuide\Controller\PriceGuide',
40                                     'action'     => 'process'
41                                 )
42                             )
43                         )
44                     )
45                 )
46             )
47 );