forked from zircote/swagger-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.33 KB
/
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
46
47
48
{
"name": "zircote/swagger-php",
"type": "library",
"license": "Apache2",
"bin": ["bin/swagger"],
"description": "Swagger-PHP - Generate interactive documentation for your RESTful API using phpdoc annotations",
"keywords": ["json", "rest", "api", "service discovery"],
"homepage": "https://github.com/zircote/swagger-php/",
"authors": [
{
"name": "Robert Allen",
"email": "[email protected]",
"homepage": "http://www.zircote.com"
},
{
"name": "Bob Fanger",
"email": "[email protected]",
"homepage": "http://bfanger.nl"
}
],
"config": {
"bin-dir": "bin"
},
"require": {
"php": ">=5.6",
"doctrine/annotations": "*",
"symfony/finder": "*"
},
"autoload": {
"psr-4": {
"Swagger\\": "src"
},
"files": ["src/functions.php"]
},
"require-dev": {
"zendframework/zend-form": "<2.8",
"squizlabs/php_codesniffer": ">=2.7",
"phpunit/phpunit": ">=4.8 <=5.6"
},
"autoload-dev": {
"psr-4": {
"SwaggerTests\\": "tests/"
}
},
"scripts": {
"test": "phpunit && phpcs -p --extensions=php --standard=PSR2 --error-severity=1 --warning-severity=0 ./src ./tests"
}
}