-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.24 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
{
"name": "mathrix-education/openapi-processor",
"description": "Compile OpenAPI exploded specification to valid OpenAPI v3.0.2 documents.",
"version": "2.0.0",
"type": "library",
"keywords": [
"openapi",
"processor"
],
"homepage": "https://github.com/mathrix-education/openapi-processor",
"license": "MIT",
"authors": [
{
"name": "Mathieu Bour",
"email": "mathieu@mathrix.fr"
}
],
"support": {
"email": "mathieu@mathrix.fr",
"issues": "https://github.com/mathrix-education/openapi-processor/issues",
"wiki": "https://github.com/mathrix-education/openapi-processor/wiki",
"source": "https://github.com/mathrix-education/openapi-processor"
},
"autoload": {
"psr-4": {
"Mathrix\\OpenAPI\\Processor\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Mathrix\\OpenAPI\\Processor\\": "tests"
}
},
"require": {
"php": ">=7.1",
"ext-json": "*",
"symfony/yaml": "^4.2",
"monolog/monolog": "^1.24",
"doctrine/inflector": "^1.3",
"mathrix-education/coding-standard": "^1.0.0"
},
"require-dev": {
"phpunit/phpunit": "^8.1",
"symfony/var-dumper": "^4.2"
},
"bin": [
"./bin/openapi-processor"
],
"non-feature-branches": [
"dev"
]
}