-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 985 Bytes
/
composer.json
File metadata and controls
39 lines (39 loc) · 985 Bytes
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
{
"name": "andersundsehr/relation-processor",
"description": "Adds DataProcessor to resolve all types of TCA Relations",
"license": [
"GPL-2.0-or-later"
],
"type": "typo3-cms-extension",
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"typo3/cms-core": "^12.4 || ^13.4",
"typo3/cms-frontend": "^12.4 || ^13.4"
},
"require-dev": {
"pluswerk/grumphp-config": "^7.2.0 || ^10.1.4",
"saschaegerer/phpstan-typo3": "^1.10.2 || ^2.1.1",
"ssch/typo3-rector": "*"
},
"autoload": {
"psr-4": {
"AUS\\RelationProcessor\\": "Classes/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true,
"pluswerk/grumphp-config": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"lock": false
},
"extra": {
"typo3/cms": {
"extension-key": "relation_processor"
}
}
}