forked from swaggest/go-code-builder
-
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) · 1.03 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.03 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
{
"name": "swaggest/go-code-builder",
"type": "library",
"description": "GO code generation library",
"keywords": [
"library"
],
"homepage": "https://github.com/swaggest/go-code-builder",
"license": "MIT",
"authors": [
{
"name": "Viacheslav Poturaev",
"email": "vearutop@gmail.com",
"homepage": "https://github.com/vearutop"
}
],
"require": {
"ext-json": "*",
"swaggest/code-builder": "^0.3.1|dev-master",
"php": ">=5.6.0",
"phplang/scope-exit": "^1.0",
"swaggest/json-schema": "^0.12.4",
"swaggest/json-schema-maker": "^0.0.1"
},
"require-dev": {
"phpunit/phpunit": "^5",
"victorjonsson/markdowndocs": "^1.3"
},
"autoload": {
"psr-4": {
"Swaggest\\GoCodeBuilder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Swaggest\\GoCodeBuilder\\Tests\\": "tests/src/"
}
},
"scripts": {
"test": "php -dxdebug.coverage_enable=1 ./vendor/bin/phpunit --coverage-text"
},
"config": {
"platform": {
"php": "5.6.1"
}
}
}