forked from api-platform/schema-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.21 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
40
{
"name": "api-platform/schema-generator",
"type": "library",
"description": "Various tools to generate a data model based on Schema.org vocables",
"keywords": ["schema.org", "semantic", "model", "doctrine", "symfony", "entity", "enum"],
"homepage": "https://api-platform.com",
"license": "MIT",
"authors": [
{
"name": "Kévin Dunglas",
"email": "dunglas@gmail.com"
}
],
"autoload": {
"psr-4": { "ApiPlatform\\SchemaGenerator\\": "src/" }
},
"require": {
"php": ">=5.4",
"ext-json": "*",
"symfony/console": "~2.5",
"symfony/yaml": "~2.4",
"symfony/config": "~2.4",
"twig/twig": "~1.0",
"psr/log": "~1.0",
"easyrdf/easyrdf": "~0.9.0",
"league/html-to-markdown": "~4.0",
"fabpot/php-cs-fixer": "~1.0"
},
"require-dev": {
"doctrine/orm": "~2.2",
"symfony/validator": "~2.6"
},
"suggest": {
"myclabs/php-enum": "For enumerations",
"doctrine/collections": "For Doctrine collections",
"doctrine/orm": "For Doctrine annotations",
"symfony/validator": "For constraint annotations"
},
"bin": ["bin/schema"]
}