-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
33 lines (33 loc) · 950 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
33
{
"name": "creof/doctrine2-php-uuid-generator",
"type": "library",
"description": "Doctrine2 pre-insert UUID id generator using PECL UUID (*nix) or COM (Windows)",
"keywords": ["orm", "database", "id", "generator", "uuid"],
"authors": [
{
"name": "Derek Lambert",
"email": "[email protected]"
}
],
"license" : "MIT",
"require": {
"doctrine/orm": ">=2.1"
},
"require-dev": {
"doctrine/common": ">=2.1",
"doctrine/dbal": ">=2.1",
"doctrine/orm": ">=2.1",
"phpunit/phpunit": "3.7.*"
},
"suggest": {
"lib-uuid": "Required for *nix type environments",
"ext-com_dotnet": "Required for Windows environments"
},
"autoload": {
"psr-0": {
"CrEOF\\PhpUuidGenerator": "lib/" }
},
"archive": {
"exclude": ["!vendor", "tests", "*phpunit.xml", "composer.phar"]
}
}