-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
80 lines (80 loc) · 1.91 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
{
"name": "in2code/powermailrecaptcha",
"description": "Google recaptcha TYPO3 extension for powermail",
"keywords": [
"typo3",
"powermail",
"captcha",
"recaptcha"
],
"homepage": "https://github.com/einpraegsam/powermailrecaptcha",
"authors": [
{
"name": "Alex Kellner",
"email": "[email protected]",
"role": "Technical owner",
"homepage": "https://www.in2code.de"
},
{
"name": "Andreas Nedbal",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://www.in2code.de"
}
],
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"require": {
"in2code/powermail": "^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
"ext-json": "*"
},
"require-dev": {
"in2code/powermail": "^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
"ext-json": "*",
"typo3/cms-extbase": "^12",
"typo3/cms-extensionmanager": "^12",
"typo3/cms-felogin": "^12",
"typo3/cms-filelist": "^12",
"typo3/cms-fluid-styled-content": "^12",
"typo3/cms-frontend": "^12",
"typo3/cms-info": "^12",
"typo3/cms-install": "^12",
"typo3/cms-recordlist": "^12",
"typo3/cms-rte-ckeditor": "^12",
"typo3/cms-scheduler": "^12",
"typo3/cms-setup": "^12",
"typo3/cms-t3editor": "^12",
"typo3/cms-tstemplate": "^12",
"typo3/cms-lowlevel": "^12",
"helhum/typo3-console": "^8"
},
"replace": {
"typo3-ter/powermailrecaptcha": "self.version"
},
"autoload": {
"psr-4": {
"In2code\\Powermailrecaptcha\\": "Classes"
}
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".build/web",
"extension-key": "powermailrecaptcha",
"ignore-as-root": false
}
},
"config": {
"vendor-dir": ".build/vendor",
"bin-dir": ".build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"scripts": {
"package-states": [
".build/bin/typo3cms install:fixfolderstructure"
]
}
}