forked from WakeOnWeb/swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.38 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
49
{
"name": "wakeonweb/swagger",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Quentin Schuler",
"email": "[email protected]"
},
{
"name": "Nicolas Macherey",
"email": "[email protected]"
}
],
"require": {
"psr/cache": "~1.0",
"psr/http-message": "~1.0",
"cache/array-adapter": "~0.4"
},
"require-dev": {
"phpunit/phpunit": "^5.5",
"mikey179/vfsStream": "~1.6",
"squizlabs/php_codesniffer": "^2.5",
"leaphub/phpcs-symfony2-standard": "^2.0",
"symfony/yaml": "~3.1",
"symfony/http-foundation": "~3.1",
"symfony/psr-http-message-bridge": "~1.0",
"cache/filesystem-adapter": "~0.3",
"justinrainbow/json-schema": "~5.0",
"zendframework/zend-diactoros": "~1.4"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"WakeOnWeb\\Component\\Swagger\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"WakeOnWeb\\component\\Swagger\\Tests\\": "tests"
}
},
"suggest": {
"justinrainbow/json-schema": "Validates your requests and responses against a JSON Schema.",
"symfony/psr-http-message-bridge": "Allows for usage of Symfony HTTP Foundation requests and responses."
}
}