forked from cebe/php-openapi
-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
executable file
·109 lines (107 loc) · 2.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
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
102
103
104
105
106
107
108
109
{
"name": "devizzent/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/DEVizzent/cebe-php-openapi#readme",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Carsten Brandt",
"email": "[email protected]",
"homepage": "https://cebe.cc/",
"role": "Creator"
},
{
"name": "Vicent Valls",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/DEVizzent/cebe-php-openapi/issues",
"source": "https://github.com/DEVizzent/cebe-php-openapi"
},
"require": {
"php": ">=7.1.0",
"ext-json": "*",
"symfony/yaml": "^3.4 || ^4 || ^5 || ^6 || ^7",
"justinrainbow/json-schema": "^5.2 || ^6.0"
},
"require-dev": {
"cebe/indent": "*",
"phpunit/phpunit": "^6.5 || ^7.5 || ^8.5 || ^9.4 || ^11.4",
"oai/openapi-specification-3.0": "3.0.3",
"oai/openapi-specification-3.1": "3.1.0",
"mermade/openapi3-examples": "1.0.0",
"apis-guru/openapi-directory": "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"
},
"replace": {
"cebe/php-openapi":"1.7.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-3.0",
"version": "3.0.3",
"source": {
"url": "https://github.com/OAI/OpenAPI-Specification",
"type": "git",
"reference": "3.0.3"
}
}
},
{
"type": "package",
"package": {
"name": "oai/openapi-specification-3.1",
"version": "3.1.0",
"source": {
"url": "https://github.com/OAI/OpenAPI-Specification",
"type": "git",
"reference": "v3.1.1-dev"
}
}
},
{
"type": "package",
"package": {
"name": "mermade/openapi3-examples",
"version": "1.0.0",
"source": {
"url": "https://github.com/Mermade/openapi3-examples",
"type": "git",
"reference": "9c2997e1a25919a8182080cc43a4db06d2dc775d"
}
}
},
{
"type": "package",
"package": {
"name": "apis-guru/openapi-directory",
"version": "1.0.0",
"dist": {
"url": "https://github.com/APIs-guru/openapi-directory/archive/refs/heads/openapi3.0.0.zip",
"type": "zip"
}
}
}
]
}