forked from swaggest/php-code-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 939 Bytes
/
composer.json
File metadata and controls
42 lines (42 loc) · 939 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
{
"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": "vearutop@gmail.com",
"homepage": "https://github.com/vearutop"
}
],
"require": {
"ext-json": "*",
"swaggest/json-schema": "^0.12.19",
"swaggest/code-builder": "^0.3.1",
"php": ">=5.6.0"
},
"require-dev": {
"phpunit/phpunit": "^5"
},
"autoload": {
"psr-4": {
"Swaggest\\PhpCodeBuilder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Swaggest\\PhpCodeBuilder\\Tests\\": "tests/src/"
}
},
"scripts": {
"test": "php -dxdebug.coverage_enable=1 ./vendor/bin/phpunit --coverage-text"
},
"config": {
"platform": {
"php": "5.6.10"
}
}
}