| 1 | <?php |
||
| 8 | class Module implements |
||
| 9 | AutoloaderProviderInterface, |
||
| 10 | LocatorRegisteredInterface, |
||
| 11 | ConfigProviderInterface |
||
| 12 | { |
||
| 13 | |||
| 14 | 1 | public function getAutoloaderConfig() |
|
| 15 | { |
||
| 16 | return array( |
||
| 17 | 'Zend\Loader\ClassMapAutoloader' => array( |
||
| 18 | 1 | __DIR__.'/../../autoload_classmap.php', |
|
| 19 | 1 | ), |
|
| 20 | 'Zend\Loader\StandardAutoloader' => array( |
||
| 21 | 'namespaces' => array( |
||
| 22 | 1 | __NAMESPACE__ => __DIR__.'/../../src/'.str_replace('\\', '/', __NAMESPACE__), |
|
| 23 | 1 | ), |
|
| 24 | ) |
||
| 25 | 1 | ); |
|
| 26 | } |
||
| 27 | |||
| 28 | 1 | public function getConfig() |
|
| 32 | |||
| 33 | } |
||
| 34 |