-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModule.php
More file actions
24 lines (22 loc) · 726 Bytes
/
Module.php
File metadata and controls
24 lines (22 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
/**
* Simple UUID generation functionality, using Zend Framework 2's Zend\Math\Rand component.
*
* @link http://github.com/MichaelGooden/MdgUuid for the canonical source repository
* @copyright Copyright (c) 2013 Michael Gooden (http://michaelgooden.github.com)
*/
namespace MdgUuid;
use Zend\ModuleManager\Feature\AutoloaderProviderInterface;
class Module implements AutoloaderProviderInterface
{
public function getAutoloaderConfig()
{
return array(
'Zend\Loader\StandardAutoloader' => array(
'namespaces' => array(
__NAMESPACE__ => __DIR__ . '/src/' . str_replace('\\', '/', __NAMESPACE__)
)
)
);
}
}