-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.41 KB
/
Copy pathcomposer.json
File metadata and controls
50 lines (50 loc) · 1.41 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
{
"name": "dmstr/openapi-json-schema-bundle",
"description": "Symfony bundle for integrating JSON Schema validation with API Platform OpenAPI documentation via dynamic schema aggregation (SchemaRegistry with anyOf merging, #[JsonSchema] attribute, OperationInputSchemaResolver, JedisonGrid decorator).",
"type": "symfony-bundle",
"license": "MIT",
"keywords": [
"symfony",
"api-platform",
"openapi",
"json-schema",
"swagger",
"validation",
"anyOf",
"schema-registry"
],
"authors": [
{
"name": "diemeisterei GmbH",
"homepage": "https://diemeisterei.de"
}
],
"require": {
"php": ">=8.4",
"symfony/framework-bundle": "^7.0",
"symfony/dependency-injection": "^7.0",
"symfony/config": "^7.0",
"api-platform/json-schema": "^4.2",
"api-platform/metadata": "^4.2",
"psr/log": "^3.0",
"psr/cache": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^12.0"
},
"suggest": {
"opis/json-schema": "For file-based JSON schema validation"
},
"autoload": {
"psr-4": {
"Dmstr\\OpenApiJsonSchema\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dmstr\\OpenApiJsonSchema\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}