-
-
Notifications
You must be signed in to change notification settings - Fork 898
Expand file tree
/
Copy pathcomposer.json
More file actions
125 lines (125 loc) · 4.83 KB
/
composer.json
File metadata and controls
125 lines (125 loc) · 4.83 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "nelmio/api-doc-bundle",
"description": "Generates documentation for your REST API from attributes",
"keywords": [
"api",
"documentation",
"doc",
"rest"
],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Symfony Community",
"homepage": "https://github.com/nelmio/NelmioApiDocBundle/contributors"
}
],
"require": {
"php": ">=8.2",
"phpdocumentor/reflection-docblock": "^5.0 || ^6.0",
"phpdocumentor/type-resolver": "^1.8.2 || ^2.0",
"psr/cache": "^1.0 || ^2.0 || ^3.0",
"psr/container": "^1.0 || ^2.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"symfony/config": "^6.4 || ^7.2 || ^8.0",
"symfony/console": "^6.4 || ^7.2 || ^8.0",
"symfony/dependency-injection": "^6.4 || ^7.2 || ^8.0",
"symfony/deprecation-contracts": "^2.1 || ^3",
"symfony/framework-bundle": "^6.4 || ^7.2 || ^8.0",
"symfony/http-foundation": "^6.4 || ^7.2 || ^8.0",
"symfony/http-kernel": "^6.4 || ^7.2 || ^8.0",
"symfony/options-resolver": "^6.4 || ^7.2 || ^8.0",
"symfony/property-info": "^6.4 || ^7.2 || ^8.0",
"symfony/routing": "^6.4 || ^7.2 || ^8.0",
"symfony/type-info": "^7.2 || ^8.0",
"zircote/swagger-php": "^4.11.1 || ^5.0 || ^6.0"
},
"require-dev": {
"api-platform/core": "^3.2 || ^4.0",
"doctrine/inflector": "^2.0",
"friendsofphp/php-cs-fixer": "^3.52",
"friendsofsymfony/rest-bundle": "^3.2.0",
"jms/serializer": "^3.32",
"jms/serializer-bundle": "^5.5",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^10.5",
"symfony/asset": "^6.4 || ^7.2 || ^8.0",
"symfony/browser-kit": "^6.4 || ^7.2 || ^8.0",
"symfony/cache": "^6.4 || ^7.2 || ^8.0",
"symfony/dom-crawler": "^6.4 || ^7.2 || ^8.0",
"symfony/expression-language": "^6.4 || ^7.2 || ^8.0",
"symfony/finder": "^6.4 || ^7.2 || ^8.0",
"symfony/form": "^6.4 || ^7.2 || ^8.0",
"symfony/phpunit-bridge": "^6.4 || ^7.2 || ^8.0",
"symfony/security-csrf": "^6.4 || ^7.2 || ^8.0",
"symfony/security-http": "^6.4 || ^7.2 || ^8.0",
"symfony/serializer": "^6.4 || ^7.2 || ^8.0",
"symfony/translation": "^6.4 || ^7.2 || ^8.0",
"symfony/twig-bundle": "^6.4 || ^7.2 || ^8.0",
"symfony/uid": "^6.4 || ^7.2 || ^8.0",
"symfony/validator": "^6.4 || ^7.2 || ^8.0",
"willdurand/hateoas-bundle": "^2.7 || ^3.0",
"willdurand/negotiation": "^3.0"
},
"conflict": {
"zircote/swagger-php": "4.8.7 || 5.5.0",
"symfony/property-info": "6.4.32 || 7.3.10 || 7.4.4 || 8.0.4"
},
"suggest": {
"api-platform/core": "For using an API oriented framework.",
"friendsofsymfony/rest-bundle": "For using the parameters annotations.",
"jms/serializer-bundle": "For describing your models.",
"symfony/asset": "For using the Swagger UI.",
"symfony/cache": "For using a PSR-6 compatible cache implementation with the API doc generator.",
"symfony/form": "For describing your form type models.",
"symfony/monolog-bundle": "For using a PSR-3 compatible logger implementation with the API PHP describer.",
"symfony/security-csrf": "For using csrf protection tokens in forms.",
"symfony/serializer": "For describing your models.",
"symfony/twig-bundle": "For using the Swagger UI.",
"symfony/validator": "For describing the validation constraints in your models.",
"willdurand/hateoas-bundle": "For extracting HATEOAS metadata."
},
"autoload": {
"psr-4": {
"Nelmio\\ApiDocBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nelmio\\ApiDocBundle\\Tests\\": "tests/"
}
},
"config": {
"lock": false,
"sort-packages": true,
"audit": {
"ignore": [
"PKSA-365x-2zjk-pt47"
]
}
},
"extra": {
"branch-alias": {
"dev-4.x": "4.x-dev",
"dev-5.x": "5.x-dev"
}
},
"scripts-descriptions": {
"phpcs-check": "Run PHP-CS-Fixer in dry-run mode",
"phpcs-fix": "Run PHP-CS-Fixer",
"phpstan": "Run phpstan",
"phpstan-baseline": "Generate a baseline for phpstan",
"phpunit": "Run phpunit"
},
"scripts": {
"phpcs-check": "vendor/bin/php-cs-fixer check -v --diff",
"phpcs-fix": "vendor/bin/php-cs-fixer fix -v",
"phpstan": "phpstan --memory-limit=2G",
"phpstan-baseline": "phpstan --memory-limit=2G --generate-baseline",
"phpunit": "phpunit"
}
}