forked from akiessling/t3ext-form_dynamic_recipient
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.48 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.48 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
{
"name": "extrameile/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+"],
"authors": [
{
"name": "Andreas Kießling",
"email": "kontakt@kiessling.tech",
"homepage": "https://kiessling.tech",
"role": "Developer"
}
],
"require": {
"typo3/cms-core": "^12.4",
"typo3/cms-form": "^12.4"
},
"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": {
"Extrameile\\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": "^1.10",
"saschaegerer/phpstan-typo3": "^1.8.4"
}
}