forked from cebe/php-openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
99 lines (98 loc) · 2.12 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "cebe/php-openapi",
"description": "Read and write OpenAPI yaml/json 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": "[email protected]",
"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.1.0",
"ext-json": "*",
"symfony/yaml": "^3.4 | ^4.0 | ^5.0",
"justinrainbow/json-schema": "^5.0"
},
"require-dev": {
"cebe/indent": "*",
"phpunit/phpunit": "^6.5 || ^7.5 || ^8.5 || ^9.4",
"oai/openapi-specification": "3.0.3",
"mermade/openapi3-examples": "1.0.0",
"apis-guru/openapi-directory": "1.0.0",
"nexmo/api-specification": "1.0.0",
"phpstan/phpstan": "^0.12.0"
},
"autoload": {
"psr-4": {
"cebe\\openapi\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.5.x-dev"
}
},
"bin": [
"bin/php-openapi"
],
"repositories": [
{
"type": "package",
"package": {
"name": "oai/openapi-specification",
"version": "3.0.3",
"source": {
"url": "https://github.com/OAI/OpenAPI-Specification",
"type": "git",
"reference": "3.0.3"
}
}
},
{
"type": "package",
"package": {
"name": "mermade/openapi3-examples",
"version": "1.0.0",
"source": {
"url": "https://github.com/Mermade/openapi3-examples",
"type": "git",
"reference": "3e8740c4994310a5d6a35d9b19e405862326f149"
}
}
},
{
"type": "package",
"package": {
"name": "apis-guru/openapi-directory",
"version": "1.0.0",
"source": {
"url": "https://github.com/APIs-guru/openapi-directory",
"type": "git",
"reference": "openapi3.0.0"
}
}
},
{
"type": "package",
"package": {
"name": "nexmo/api-specification",
"version": "1.0.0",
"source": {
"url": "https://github.com/Nexmo/api-specification",
"type": "git",
"reference": "voice-2.0.0"
}
}
}
]
}