-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
54 lines (54 loc) · 1.51 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
{
"name": "datamints/feuser",
"type": "typo3-cms-extension",
"description": "User registration and edit plugin, fully configurable, custom validators, autologin, double-opt-in, admin approval, IRRE configuration, resend activation mail, redirect features, support for saltedpasswords, support for salesforce. More to come!",
"keywords": [
"feuser",
"registration",
"edit",
"validators",
"autologin",
"double-opt-in",
"admin-approval",
"md5",
"salted",
"salesforce"
],
"homepage": "https://extensions.typo3.org/extension/datamints_feuser/",
"authors": [
{
"name": "Bernhard Baumgartl, datamints GmbH",
"email": "b.baumgartl@datamints.com",
"role": "Developer",
"homepage": "https://www.datamints.com/"
}
],
"license": "GPL-2.0-or-later",
"support": {
"issues": "http://forge.typo3.org/projects/extension-datamints_feuser"
},
"require": {
"php": ">=5.3.7,<=7.99.99",
"typo3/cms-core": ">=6.2.0,<=10.99.990"
},
"suggest": {
"typo3db_legacy": ">=1.0.0,<=1.0.99"
},
"autoload": {
"psr-4": {
"Datamints\\Feuser\\": "Classes"
},
"classmap": [
"lib",
"pi1"
]
},
"replace": {
"typo3-ter/datamints-feuser": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "datamints_feuser"
}
}
}