-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
116 lines (116 loc) · 3.06 KB
/
Copy pathcomposer.json
File metadata and controls
116 lines (116 loc) · 3.06 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
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
110
111
112
113
114
115
116
{
"name": "phayne-io/php-openapi",
"description": "Read and write OpenAPI yaml/json files and make the content accessable in PHP objects.",
"type": "library",
"minimum-stability": "stable",
"keywords": ["api", "PHP", "schema", "openapi", "api-specification", "swagger"],
"homepage": "https://github.com/phayne-io/php-openapi#README.md",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Julien Guittard",
"email": "julien.guittard@me.com"
}
],
"require": {
"php": "^8.4",
"ext-json": "*",
"symfony/yaml": "^6.0 || ^7.0",
"justinrainbow/json-schema": "^6.4.2"
},
"require-dev": {
"malukenho/docheader": "^1.1",
"phpunit/phpunit": "^11.5",
"squizlabs/php_codesniffer": "^3.13",
"vimeo/psalm": "7.0.0-beta9",
"oai/openapi-specification": "^3.0",
"mermade/openapi3-examples": "^1.0",
"apis-guru/openapi-directory": "^1.0",
"nexmo/api-specification": "^1.0"
},
"autoload": {
"psr-4": {
"Phayne\\OpenAPI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhayneTest\\OpenAPI\\": "test/"
}
},
"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"
}
}
}
],
"scripts": {
"psalm": "psalm",
"phpcbf": "phpcbf -vpw --cache=build/cache/phpcs.cache",
"phpcs": "phpcs --cache=build/cache/phpcs.cache",
"phpunit": "phpunit --colors=always",
"phpunit-coverage": "phpunit --colors=always --coverage-html build/report",
"test": [
"@phpcs",
"@phpunit-coverage"
]
},
"support": {
"source": "https://github.com/phayne-io/php-openapi",
"issues": "https://github.com/phayne-io/php-openapi/issues",
"rss": "https://github.com/phayne-io/php-openapi/releases.atom",
"wiki": "https://github.com/phayne-io/php-openapi/wiki"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"bin": [
"bin/php-openapi"
]
}