-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (75 loc) · 1.88 KB
/
composer.json
File metadata and controls
75 lines (75 loc) · 1.88 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
{
"name": "valantic/pimcore-api-documentation",
"version": "0.6.6",
"description": "Auto generate API documentation for routes",
"homepage": "https://github.com/valantic/pimcore-api-documentation",
"license": "MIT",
"authors": [
{
"name": "Dino Turopoli",
"email": "dino.turopoli@factory.dev"
},
{
"name": "Linus Metzler",
"email": "linus.metzler@cec.valantic.com"
}
],
"autoload": {
"psr-4": {
"Valantic\\PimcoreApiDocumentationBundle\\": "src/"
}
},
"require": {
"php": "^8.2",
"ext-json": "*",
"pimcore/pimcore": "^11.0 || ^12.0",
"nelmio/api-doc-bundle": "^4.12",
"phpstan/phpdoc-parser": "^1.30"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8.2",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^2.1.31",
"phpstan/phpstan-deprecation-rules": "^2.0.3",
"phpstan/phpstan-strict-rules": "^2.0.7",
"roave/security-advisories": "dev-latest",
"rector/rector": "^2.2.3",
"valantic/php-cs-fixer-config": "^2.2.1"
},
"scripts": {
"post-install-cmd": [
"@composer bin all install --ansi"
],
"post-update-cmd": [
"@composer bump -D",
"@composer bin all update --ansi",
"@composer bin all bump"
],
"rector": [
"./vendor/bin/rector process"
],
"phpstan": [
"vendor/bin/phpstan analyse --memory-limit=1G"
],
"php-cs-fixer": [
"vendor-bin/phpcs/vendor/bin/php-cs-fixer fix -v --diff"
],
"php-cs-fixer-check": [
"vendor-bin/phpcs/vendor/bin/php-cs-fixer fix --diff --dry-run"
]
},
"prefer-stable": false,
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"phpstan/extension-installer": true,
"php-http/discovery": true
}
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": true
}
}
}