-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
44 lines (42 loc) · 1.09 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
{
"name": "ralffreit/mfa-email",
"type": "typo3-cms-extension",
"description": "This extension adds the E-Mail MFA provider to TYPO3, available for TYPO3 v11 ans TYPO3 v12.",
"license": "GPL-3.0-or-later",
"keywords": [
"typo3", "email", "mfa"
],
"authors": [
{
"name": "Ralf Freit",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/MrSilaz/mfa_email/issues",
"source": "https://github.com/MrSilaz/mfa_email/"
},
"version": "1.0.5",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.4",
"typo3/cms-core": "^11.5 || ^12.4"
},
"autoload": {
"psr-4": {
"Ralffreit\\MfaEmail\\": "Classes"
}
},
"replace": {
"typo3-ter/mfa-email": "self.version"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/public",
"extension-key": "mfa_email"
}
}
}