-
-
Notifications
You must be signed in to change notification settings - Fork 110
/
composer.json
75 lines (75 loc) · 2.17 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "api-platform/schema-generator",
"type": "library",
"description": "Various tools to generate a data model based on Schema.org vocables",
"keywords": [
"rdf",
"owl",
"schema.org",
"semantic",
"model",
"doctrine",
"symfony",
"entity",
"enum"
],
"homepage": "https://api-platform.com/docs/schema-generator/",
"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.4",
"ext-json": "*",
"doctrine/inflector": "^1.4.3 || ^2.0",
"sweetrdf/easyrdf": "^1.6",
"friendsofphp/php-cs-fixer": "^2.15 || ^3.0",
"league/html-to-markdown": "^5.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"symfony/config": "^5.2 || ^6.0 || ^7.0" ,
"symfony/console": "^5.2 || ^6.0 || ^7.0",
"symfony/yaml": "^5.2 || ^6.0 || ^7.0",
"symfony/filesystem": "^5.2 || ^6.0 || ^7.0",
"twig/twig": "^3.0",
"nette/php-generator": "^3.6 || ^4.0",
"nikic/php-parser": "^4.13 || ^5.0",
"devizzent/cebe-php-openapi": "^1.0.3",
"symfony/string": "^5.2 || ^6.0 || ^7.0"
},
"require-dev": {
"api-platform/core": "^2.7 || ^3.0",
"doctrine/orm": "^2.7",
"myclabs/php-enum": "^1.7",
"symfony/doctrine-bridge": "^5.2 || ^6.0 || ^7.0",
"symfony/phpunit-bridge": "^5.2 || ^6.0 || ^7.0",
"symfony/serializer": "^5.2 || ^6.0 || ^7.0",
"symfony/validator": "^5.2 || ^6.0 || ^7.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^1.2.0",
"symfony/finder": "^5.2 || ^6.0 || ^7.0"
},
"conflict": {
"sebastian/comparator": ">=5.0"
},
"bin": [
"bin/schema"
],
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}