-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
45 lines (45 loc) · 986 Bytes
/
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
{
"name": "swaggest/json-cli",
"description": "JSON CLI tool (diff, rearrange, pretty print, minify, yaml convert, etc...)",
"type": "tool",
"license": "MIT",
"authors": [
{
"name": "Viacheslav Poturaev",
"email": "[email protected]"
}
],
"require": {
"ext-json": "*",
"swaggest/json-diff": "^3.8.3",
"php-yaoi/php-yaoi": "^1",
"symfony/yaml": "^3",
"salsify/json-streaming-parser": "^7.0",
"swaggest/json-schema": "^0.12.41",
"swaggest/go-code-builder": "0.4.51",
"swaggest/php-code-builder": "^0.2.41",
"swaggest/code-builder": "^0.3.5",
"swaggest/json-schema-maker": "^0.3.7"
},
"require-dev": {
"phperf/phpunit": "4.8.38"
},
"autoload": {
"psr-4": {
"Swaggest\\JsonCli\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Swaggest\\JsonCli\\Tests\\": "tests/src"
}
},
"config": {
"platform": {
"php": "5.6.0"
}
},
"bin": [
"bin/json-cli"
]
}