forked from swaggest/swac
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 965 Bytes
/
composer.json
File metadata and controls
47 lines (47 loc) · 965 Bytes
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
{
"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.19",
"swaggest/php-code-builder": "^0.2.16",
"swaggest/go-code-builder": "^0.4.6",
"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",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Swac\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Swac\\Tests\\": "tests/src/"
}
},
"require-dev": {
"php": "^5.6|^7",
"phpunit/phpunit": "^5",
"guzzlehttp/guzzle": "^6.3"
},
"config": {
"platform": {
"php": "5.6.0"
}
},
"bin": [
"bin/swac"
]
}