Git Repository Public Repository

namibia

URLs

Copy to Clipboard
 
f5b7b4d27eead0d7a32711409257710adb5e16c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
namespace Config;


class Module
{
	public function getAutoloaderConfig()
	{
		return array(
				'Zend\Loader\ClassMapAutoloader' => array(
						__DIR__ . '/autoload_classmap.php',
				)
		);
	}

	public function getConfig()
	{
		return include __DIR__ . '/config/module.config.php';
	}

	public function getServiceConfig()
	{
		return array(
				'invokables' => array(
						'AppConfig' => __NAMESPACE__ . '\Workflow',
						__NAMESPACE__ . '.Service.Config' => __NAMESPACE__ . '\Service\Config',
            __NAMESPACE__ . '.Service.RegionalManager' => __NAMESPACE__ . '\Service\RegionalManager',
				)
		);
	}

}

Commits for namibia/module/Config/Module.php

Diff revisions: vs.
Revision Author Commited Message
df0489 ... Mark Fri 14 Oct, 2016 10:01:00 +0000

initial commit