-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.53 KB
/
Copy pathcomposer.json
File metadata and controls
49 lines (49 loc) · 1.53 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
{
"name": "andreaskiessling/form-dynamic-recipient",
"type": "typo3-cms-extension",
"description": "Adds new form select type, which shows recipient records of a given page. This information can be used as dynamic recipient for the form data.",
"homepage": "https://kiessling.tech",
"license": ["GPL-2.0-or-later"],
"authors": [
{
"name": "Andreas Kießling",
"email": "kontakt@kiessling.tech",
"homepage": "https://kiessling.tech",
"role": "Developer"
}
],
"require": {
"typo3/cms-core": "^14.3",
"typo3/cms-extbase": "^14.3",
"typo3/cms-form": "^14.3"
},
"scripts": {
"phpstan": "phpstan analyse --memory-limit=1G --configuration=Build/phpstan.neon",
"phpstan-debug": "phpstan analyse --memory-limit=1G --configuration=Build/phpstan.neon --debug"
},
"autoload": {
"psr-4": {
"AndreasKiessling\\FormDynamicRecipient\\": "Classes"
}
},
"extra": {
"typo3/cms": {
"extension-key": "form_dynamic_recipient",
"app-dir": ".Build",
"web-dir": ".Build/Web"
}
},
"config": {
"sort-packages": true,
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"require-dev": {
"phpstan/phpstan": "^2.2",
"saschaegerer/phpstan-typo3": "^3.0"
}
}