forked from cebe/php-openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.12 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.12 KB
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
{
"name": "cebe/php-openapi",
"description": "READ OpenAPI yaml files and make the content accessable in PHP objects.",
"keywords": ["openapi"],
"homepage": "https://github.com/cebe/php-openapi#readme",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Carsten Brandt",
"email": "mail@cebe.cc",
"homepage": "https://cebe.cc/",
"role": "Creator"
}
],
"support": {
"issues": "https://github.com/cebe/php-openapi/issues",
"source": "https://github.com/cebe/php-openapi"
},
"require": {
"php": ">=7.0.0",
"symfony/yaml": "^3.3"
},
"require-dev": {
"cebe/indent": "*",
"phpunit/phpunit": "^6.5",
"oai/openapi-specification": "3.0.2"
},
"autoload": {
"psr-4": {
"cebe\\openapi\\": "src/"
}
},
"config": {
"platform": {
"php": "7.0.0"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "oai/openapi-specification",
"version": "3.0.2",
"source": {
"url": "https://github.com/OAI/OpenAPI-Specification",
"type": "git",
"reference": "3.0.2"
}
}
}
]
}