forked from nelmio/NelmioApiDocBundle
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
58 lines (58 loc) · 1.8 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
54
55
56
57
58
{
"name": "nelmio/api-doc-bundle",
"description": "Generates documentation for your REST API from annotations",
"keywords": ["api", "documentation", "doc", "rest"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Nelmio",
"homepage": "http://nelm.io"
},
{
"name": "Symfony Community",
"homepage": "https://github.com/nelmio/NelmioApiDocBundle/contributors"
}
],
"require": {
"php": ">=8.1",
"symfony/form": "^5.0|^6.0",
"symfony/twig-bundle": "^5.0|^6.0",
"symfony/framework-bundle": "^5.0|^6.0",
"symfony/console": "^5.0|^6.0",
"michelf/php-markdown": "~1.4"
},
"require-dev": {
"doctrine/annotations": "^1.0",
"friendsofphp/php-cs-fixer": "^3",
"jms/serializer": "^3.15",
"jms/serializer-bundle": "^4.1|^5.4",
"phpunit/phpunit": "~9.5",
"retailcrm/php-code-style": "^1",
"symfony/asset": "^5.0|^6.0",
"symfony/browser-kit": "^5.0|^6.0",
"symfony/translation": "^5.0|^6.0",
"symfony/validator": "^5.0|^6.0",
"symfony/yaml": "^5.0|^6.0"
},
"conflict": {
"jms/serializer": "<0.12",
"jms/serializer-bundle": "<0.11",
"twig/twig": "<1.12",
"symfony/symfony": "~2.7.8"
},
"suggest": {
"symfony/form": "For using form definitions as input.",
"symfony/validator": "For making use of validator information in the doc.",
"jms/serializer": "For making use of serializer information in the doc."
},
"autoload": {
"psr-0": { "Nelmio\\ApiDocBundle": "" }
},
"target-dir": "Nelmio/ApiDocBundle",
"extra": {
"branch-alias": {
"dev-2.x": "2.13-dev"
}
}
}