forked from pluswerk/grumphp-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 loc) · 1.96 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
{
"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": "[email protected]",
"homepage": "https://www.andersundsehr.com"
}
],
"support": {
"issues": "https://github.com/pluswerk/grumphp-config/issues"
},
"require": {
"php": "~8.1.0 || ~8.2.0",
"composer-plugin-api": "^2.1.0",
"andersundsehr/phpstan-git-files": "^1.0.1",
"composer/semver": "^3.3.0",
"enlightn/security-checker": "^1.10.0",
"ergebnis/composer-normalize": "^2.31",
"kcs/psr-phpstan-rules": "^1.1",
"php-parallel-lint/php-parallel-lint": "^1.3.2",
"phpro/grumphp": "^1.15",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.9.0",
"pluswerk/grumphp-bom-task": "^7.0.0",
"pluswerk/grumphp-xliff-task": "^5.0.0",
"rector/rector": "^0.15.10",
"squizlabs/php_codesniffer": "^3.7.1",
"symfony/yaml": "^5.4.0 || ^6.0"
},
"require-dev": {
"composer/composer": "^2.5.5",
"roave/security-advisories": "dev-latest",
"saschaegerer/phpstan-typo3": "^1.8.5",
"ssch/typo3-rector": "^1.2.2"
},
"autoload": {
"psr-4": {
"PLUS\\GrumPHPConfig\\": "src/"
}
},
"config": {
"allow-plugins": {
"phpro/grumphp": true,
"phpstan/extension-installer": true,
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"ergebnis/composer-normalize": true
},
"preferred-install": {
"pluswerk/grumphp-bom-task": "source",
"pluswerk/grumphp-xliff-task": "source",
"andersundsehr/phpstan-git-files": "source",
"*": "dist"
},
"sort-packages": true
},
"extra": {
"class": "PLUS\\GrumPHPConfig\\Composer\\Plugin"
},
"require-typo3": {
"saschaegerer/phpstan-typo3": "^1.8.2",
"ssch/typo3-rector": "^1.1.3"
}
}