-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
81 lines (81 loc) · 2.19 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
{
"name": "pluswerk/grumphp-config",
"description": "GrumPHP config for php projects(mainly TYPO3)",
"license": "LGPL-3.0-or-later",
"type": "composer-plugin",
"keywords": [
"dev"
],
"authors": [
{
"name": "Matthias Vogel",
"email": "m.vogel@andersundsehr.com",
"homepage": "https://www.andersundsehr.com"
}
],
"support": {
"issues": "https://github.com/pluswerk/grumphp-config/issues"
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"composer-plugin-api": "^2.1.0",
"andersundsehr/phpstan-git-files": "^1.0.2",
"andersundsehr/rector-p": "^1.0",
"composer/semver": "^3.3.0",
"enlightn/security-checker": "^1.10.0 || ^2",
"ergebnis/composer-normalize": "^2.31",
"kcs/psr-phpstan-rules": "^1.1",
"php-parallel-lint/php-parallel-lint": "^1.3.2",
"phpro/grumphp": "^2",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.9.0",
"pluswerk/grumphp-bom-task": "^8.0.0",
"pluswerk/grumphp-xliff-task": "^6.0.0",
"rector/rector": "^1.2.2",
"squizlabs/php_codesniffer": "^3.7.1",
"symfony/yaml": "^5.4.0 || ^6.0 || ^7.0"
},
"require-dev": {
"composer/composer": "^2.7.7",
"pluswerk/grumphp-bom-task": "dev-main as 8.99.99",
"pluswerk/grumphp-xliff-task": "dev-main as 6.99.99",
"roave/security-advisories": "dev-latest"
},
"repositories": [
{
"type": "path",
"url": "packages/*",
"options": {
"reference": "none"
}
}
],
"autoload": {
"psr-4": {
"PLUS\\GrumPHPConfig\\": "src/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"preferred-install": {
"andersundsehr/phpstan-git-files": "source",
"pluswerk/grumphp-bom-task": "source",
"pluswerk/grumphp-xliff-task": "source",
"*": "dist"
},
"sort-packages": true
},
"extra": {
"class": "PLUS\\GrumPHPConfig\\Composer\\Plugin"
},
"require-typo3": {
"saschaegerer/phpstan-typo3": "^1.10.0",
"ssch/typo3-rector": "^2.5.0"
}
}