-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModule.php
68 lines (63 loc) · 1.83 KB
/
Module.php
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php
/**
* Furnace Project
*
* This source file is subject to the BSD license bundled with
* this package in the LICENSE.txt file. It is also available
* on the world-wide-web at http://www.opensource.org/licenses/bsd-license.php.
* If you are unable to receive a copy of the license or have
* questions concerning the terms, please send an email to
*
* @category akandels
* @package furnace
* @author Andrew Kandels ([email protected])
* @copyright Copyright (c) 2013 Andrew P. Kandels (http://andrewkandels.com)
* @license http://www.opensource.org/licenses/bsd-license.php BSD License
* @link http://contain-project.org/furnace
*/
namespace Furnace;
use Zend\ModuleManager\Feature\AutoloaderProviderInterface;
use Zend\Mvc\MvcEvent;
/**
* ZF2 Module Bootstrap
*
* @category akandels
* @package furnace
* @copyright Copyright (c) 2013 Andrew P. Kandels (http://andrewkandels.com)
* @license http://www.opensource.org/licenses/bsd-license.php BSD License
*/
class Module implements AutoloaderProviderInterface
{
/**
* @var Zend\ServiceManager
*/
protected $serviceManager;
/**
* Get Configuration
*
* @return array
*/
public function getConfig()
{
return include __DIR__ . '/config/module.config.php';
}
/**
* Gets the configuration for autloading Furnace classes.
*
* @return array
*/
public function getAutoloaderConfig()
{
return array(
'Zend\Loader\ClassMapAutoloader' => array(
__DIR__ . '/autoload_classmap.php',
),
'Zend\Loader\StandardAutoloader' => array(
'namespaces' => array(
__NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
),
),
);
}
}