user registration remove company and owner etc
[namibia] / module / User / Module.php
1 <?php
2 namespace User;
3
4
5 class Module
6 {
7         public function getAutoloaderConfig()
8         {
9                 return array(
10                                 'Zend\Loader\ClassMapAutoloader' => array(
11                                                 __DIR__ . '/autoload_classmap.php',
12                                 )
13                 );
14         }
15
16         public function getConfig()
17         {
18                 return include __DIR__ . '/config/module.config.php';
19         }
20
21         public function getServiceConfig()
22         {
23                 return array(
24                                 'invokables' => array(
25                                                 __NAMESPACE__                                                   => __NAMESPACE__ . '\Workflow',
26                                                 __NAMESPACE__ . '.Service.Profile'              => __NAMESPACE__ . '\Service\Profile',
27                                                 __NAMESPACE__ . '.Service.Registration' => __NAMESPACE__ . '\Service\Registration',
28                                                 __NAMESPACE__ . '.Service.Permissions'  => __NAMESPACE__ . '\Service\Permissions',
29                                                 __NAMESPACE__ . '.Service.Override'     => __NAMESPACE__ . '\Service\Override'
30                                 )
31                 );
32         }
33
34 }