-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (52 loc) · 1.6 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
50
51
52
53
{
"name": "exsyst/api-doc-bundle",
"type": "symfony-bundle",
"description": "[WIP] Generates Swagger docs from several sources",
"license": "MIT",
"authors": [
{
"name": "EXSyst"
}
],
"require": {
"php": "^7.0",
"symfony/framework-bundle": "^3.2",
"exsyst/swagger": "~0.2.2"
},
"require-dev": {
"symfony/twig-bundle": "^3.2",
"symfony/config": "^3.2",
"symfony/validator": "^3.2",
"symfony/property-access": "^3.2",
"symfony/browser-kit": "^3.2",
"symfony/cache": "^3.2",
"symfony/phpunit-bridge": "^3.2",
"sensio/framework-extra-bundle": "^3.0",
"phpunit/phpunit": "^5.4",
"doctrine/annotations": "^1.2",
"nelmio/api-doc-bundle": "^2.0",
"phpdocumentor/reflection-docblock": "^3.1",
"zircote/swagger-php": "^2.0",
"api-platform/core": "dev-master",
"friendsofsymfony/rest-bundle": "^2.0"
},
"suggest": {
"nelmio/api-doc-bundle": "For using the ApiDoc annotation.",
"phpdocumentor/reflection-docblock": "For parsing php docs.",
"zircote/swagger-php": "For using swagger annotations.",
"api-platform/core": "For using an API oriented framework.",
"friendsofsymfony/rest-bundle": "For using the parameters annotations."
},
"autoload": {
"psr-4": {
"EXSyst\\Bundle\\ApiDocBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}