forked from Nono1971/Doctrine-MetadataGrapher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.16 KB
/
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
34
35
36
37
38
39
{
"name": "onurb/doctrine-metadata-grapher",
"description": "Helper to format doctrine metadata for UML API",
"type": "library",
"licence": "MIT",
"keywords": [
"doctrine",
"orm",
"yuml",
"metadata",
"grapher",
"diagram"
],
"homepage": "http://www.doctrine-project.org/",
"authors": [
{
"name": "Bruno Heron",
"email": "[email protected]"
},
{
"name": "Marco Pivetta",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.2",
"doctrine/orm": "^2.5"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"squizlabs/php_codesniffer": "~2"
},
"suggest": {
"onurb/doctrine-yuml-bundle": "Symfony bundle to generate Entities mapping"
},
"autoload": {
"psr-4": { "Onurb\\Doctrine\\ORMMetadataGrapher\\":"lib/Onurb/Doctrine/ORMMetadataGrapher/" }
}
}