forked from evoWeb/sf_register
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (51 loc) · 1.2 KB
/
composer.json
File metadata and controls
58 lines (51 loc) · 1.2 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
50
51
52
53
54
55
56
57
58
{
"name": "evoweb/sf-register",
"type": "typo3-cms-extension",
"description": "Frontend User Registration: Offers the possibility to maintain the fe_user data in frontend.",
"homepage": "https://github.com/evoWeb/sf_register/",
"license": "GPL-2.0-or-later",
"support": {
"docs": "https://docs.typo3.org/p/evoweb/sf-register/master/en-us/",
"issues": "https://github.com/evoWeb/sf_register/issues"
},
"keywords": [
"TYPO3 CMS",
"User registration",
"Frontend",
"Edit user data",
"Double-optin",
"Delete account",
"Resend optin mail"
],
"require": {
"typo3/cms-core": "^10.4",
"typo3/cms-extbase": "^10.4",
"typo3/cms-fluid": "^10.4"
},
"suggest": {
"evoweb/recaptcha": "^10.0"
},
"autoload": {
"psr-4": {
"Evoweb\\SfRegister\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Evoweb\\SfRegister\\Tests\\": "Tests/"
}
},
"config": {
"vendor-dir": ".Build/Web/vendor"
},
"extra": {
"typo3/cms": {
"extension-key": "sf_register",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
},
"scripts": {
"post-autoload-dump": "mkdir -p .Build/Web/typo3conf/ext/ && ln -snf ../../../.. .Build/Web/typo3conf/ext/sf_register"
}
}