testing
[namibia] / module / Fixture / config / module.config.php
1 <?php
2 namespace Fixture;
3
4
5 return array(
6                 'controllers' => array(
7                                 'invokables' => array(
8                                                 'Fixture\Controller\Fixture' => 'Fixture\Controller\FixtureController'
9                                 ),
10                 ),
11             'console' => array(
12                 'router' => array(
13                     'routes' => array(
14                         'build' => array(
15                             'options' => array(
16                                 'route'    => 'fixture build',
17                                 'defaults' => array(
18                                     'controller' => 'Fixture\Controller\Fixture',
19                                     'action'     => 'build'
20                                 )
21                             )
22                         ),
23                         'buildlimited' => array(
24                             'options' => array(
25                                 'route'    => 'fixture buildlimited',
26                                 'defaults' => array(
27                                     'controller' => 'Fixture\Controller\Fixture',
28                                     'action'     => 'buildlimited'
29                                 )
30                             )
31                         ),
32                         'buildtemplates' => array(
33                             'options' => array(
34                                 'route'    => 'fixture buildtemplates',
35                                 'defaults' => array(
36                                     'controller' => 'Fixture\Controller\Fixture',
37                                     'action'     => 'buildtemplates'
38                                 )
39                             )
40                         )
41                     )
42                 )
43             )
44 );