-
Notifications
You must be signed in to change notification settings - Fork 91
/
composer.json
101 lines (101 loc) · 2.28 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
100
101
{
"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 || ^5 || ^6 || ^7.0",
"justinrainbow/json-schema": "^5.2"
},
"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"
},
"conflict": {
"symfony/yaml": "3.4.0 - 3.4.4 || 4.0.0 - 4.4.17 || 5.0.0 - 5.1.9 || 5.2.0"
},
"autoload": {
"psr-4": {
"cebe\\openapi\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.6.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": "9d2e0b6696a230a182d740a8e97ba27fb41b13bd"
}
}
},
{
"type": "package",
"package": {
"name": "nexmo/api-specification",
"version": "1.0.0",
"source": {
"url": "https://github.com/cebe/nexmo-api-specification",
"type": "git",
"reference": "590fadf21f528ed8e05f6ff47c2e49d81f50a181"
}
}
}
]
}