-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 883 Bytes
/
composer.json
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
{
"abandoned": true,
"name": "michaelgooden/mdg-uuid",
"description": "Simple UUID generation functionality, using Zend Framework 2's Zend\\Math\\Rand component.",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"uuid"
],
"homepage": "https://github.com/MichaelGooden/MdgUuid",
"authors": [
{
"name": "Michael Gooden",
"email": "[email protected]",
"homepage": "http://michaelgooden.github.com/"
}
],
"require": {
"zendframework/zend-math": "2.*"
},
"suggest": {
"ircmaxell/random-lib": "Fallback random byte generator for Zend\\Math\\Rand if OpenSSL/Mcrypt extensions are unavailable"
},
"autoload": {
"psr-0": {
"MdgUuid\\": "src/"
},
"classmap": [
"./Module.php"
]
}
}