-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
50 lines (50 loc) · 1.05 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
{
"name": "swaggest/swac",
"description": "Swagger/OpenAPI code generator",
"type": "tool",
"license": "MIT",
"authors": [
{
"name": "Viacheslav Poturaev",
"email": "vearutop@gmail.com"
}
],
"require": {
"swaggest/json-schema": "^0.12.36",
"swaggest/php-code-builder": "^0.2.42",
"swaggest/go-code-builder": "^0.4.50",
"swaggest/code-builder": "^0.3.8",
"swaggest/json-cli": "^v1.11.2",
"php-yaoi/php-yaoi": "^1",
"monolog/monolog": "^1.23",
"bramus/monolog-colored-line-formatter": "^2.0",
"psr/http-message": "^1.0",
"swaggest/swagger2-schema": "^0.2.3",
"swaggest/rest-client": "^0.1",
"symfony/yaml": "^3",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Swac\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Swac\\Tests\\": "tests/src/"
}
},
"require-dev": {
"php": "^5.6|^7",
"phperf/phpunit": "^4.8.38",
"guzzlehttp/guzzle": "^6.5.5"
},
"config": {
"platform": {
"php": "5.6.0"
}
},
"bin": [
"bin/swac"
]
}