forked from swaggest/php-code-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 840 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
{
"name": "swaggest/php-code-builder",
"type": "library",
"description": "Swaggest JSON-schema enabled PHP code builder",
"keywords": ["library"],
"homepage": "https://github.com/swaggest/php-code-builder",
"license": "MIT",
"authors": [
{
"name": "Viacheslav Poturaev",
"email": "[email protected]",
"homepage": "https://github.com/vearutop"
}
],
"require": {
"ext-json": "*",
"swaggest/json-schema": "^0.12.33",
"swaggest/code-builder": "^0.3.4",
"php": ">=5.6.0"
},
"require-dev": {
"phperf/phpunit": "4.8.38"
},
"autoload": {
"psr-4": {
"Swaggest\\PhpCodeBuilder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Swaggest\\PhpCodeBuilder\\Tests\\": "tests/src/"
}
},
"config": {
"platform": {
"php": "5.6.10"
}
}
}