-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
102 lines (102 loc) · 3.12 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
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
{
"name": "pbaszak/extended-api-doc-bundle",
"title": "PBaszak Extended Api Doc Bundle",
"description": "An extension for `nelmio/api-doc-bundle` that improves the sorting of endpoints by tags and provides minor stylistic corrections to the original Nelmio view.",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "patrykbaszak",
"email": "[email protected]"
}
],
"keywords": [
"symfony",
"bundle"
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.2",
"ext-ctype": "*",
"ext-iconv": "*",
"nelmio/api-doc-bundle": "^4.20",
"symfony/asset": "^6",
"symfony/console": "^6",
"symfony/dotenv": "^6",
"symfony/flex": "^2",
"symfony/framework-bundle": "^6",
"symfony/http-kernel": "^6",
"symfony/runtime": "^6",
"symfony/twig-bundle": "^6",
"symfony/uid": "^6",
"symfony/yaml": "^6",
"twig/extra-bundle": "^3.8"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "*",
"phpstan/phpdoc-parser": "*",
"phpstan/phpstan": "*",
"phpstan/phpstan-symfony": "*",
"phpunit/phpunit": "*",
"symfony/browser-kit": "^6"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"phpstan/extension-installer": true,
"symfony/flex": true,
"symfony/runtime": true
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"PBaszak\\ExtendedApiDoc\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PBaszak\\ExtendedApiDoc\\Tests\\": "tests/"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"cache:clear": "rm -rf var/cache /tmp/symfony-cache && bin/console cache:clear",
"code:fix": "vendor/bin/php-cs-fixer fix",
"code:analyse": "vendor/bin/phpstan analyse src -c tools/phpstan/fpm-config.neon",
"code:analyse:b": "vendor/bin/phpstan analyse src -c tools/phpstan/fpm-config.neon --generate-baseline tools/phpstan/fpm-baseline.neon --allow-empty-baseline",
"phpunit": [
"@putenv APP_ENV=test",
"vendor/bin/phpunit --colors=always"
],
"test:cc": [
"@putenv XDEBUG_MODE=coverage",
"@phpunit --do-not-cache-result --log-junit var/coverage/phpunit-report.xml --coverage-cobertura var/coverage/phpunit-coverage.xml --coverage-text --colors=never"
],
"test:ci": [
"@code:fix",
"@code:analyse",
"@phpunit"
],
"test:e2e": "@phpunit --group e2e tests",
"test:unit": "@phpunit --group unit tests"
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "^6"
}
}
}