forked from api-platform/schema-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.42 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
41
42
43
{
"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": "[email protected]"
}
],
"autoload": {
"psr-4": { "ApiPlatform\\SchemaGenerator\\": "src/" }
},
"autoload-dev": {
"psr-4": { "ApiPlatform\\SchemaGenerator\\Tests\\": "tests/" }
},
"require": {
"php": ">=7.1",
"doctrine/inflector": "^1.0",
"easyrdf/easyrdf": "^0.9",
"ext-json": "*",
"friendsofphp/php-cs-fixer": "^2.10",
"league/html-to-markdown": "^4.0",
"psr/log": "^1.0",
"symfony/config": "^3.3 || ^4.0",
"symfony/console": "^2.7 || ^3.0 || ^4.0",
"symfony/yaml": "^2.7 || ^3.0 || ^4.0",
"twig/twig": "^1.35 || ^2.0"
},
"require-dev": {
"api-platform/core": "^2.0",
"doctrine/orm": "^2.2",
"myclabs/php-enum": "^1.0",
"symfony/doctrine-bridge": "^2.7 || ^3.0 || ^4.0",
"symfony/filesystem": "^2.7 || ^3.0 || ^4.0",
"symfony/serializer": "^2.7 || ^3.0 || ^4.0",
"symfony/validator": "^2.7 || ^3.0 || ^4.0"
},
"bin": ["bin/schema"]
}