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
77 lines (70 loc) · 1.61 KB
/
composer.json
File metadata and controls
77 lines (70 loc) · 1.61 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"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": "^11.5",
"typo3/cms-extbase": "*",
"typo3/cms-fluid": "*"
},
"require-dev": {
"typo3/cms-backend": "*",
"typo3/cms-frontend": "*",
"typo3/cms-install": "*",
"friendsoftypo3/phpstan-typo3": "^0.9.0",
"phpstan/phpstan": "^1.8.1",
"sjbr/sr-freecap": "^11.5.1"
},
"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",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "sf_register",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
},
"scripts": {
"prepare-release": [
"rm -rf .Build",
"rm -rf .github",
"rm -rf Tests",
"rm .gitattributes",
"rm .gitignore",
"sed -i \"s/version' => '.*'/version' => '$(echo ${GITHUB_REF} | cut -d / -f 3)'/\" ext_emconf.php\n"
]
}
}