-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathcomposer.json
More file actions
119 lines (118 loc) · 3.42 KB
/
composer.json
File metadata and controls
119 lines (118 loc) · 3.42 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "codefareith/cf-google-authenticator",
"description": "Enable Google 2FA (two factor authentication) for both, frontend- and backend accounts.",
"type": "typo3-cms-extension",
"keywords": [
"typo3",
"typo3-cms",
"typo3-cms-extension",
"typo3-extension",
"extension",
"php",
"google",
"google-2fa",
"google-tfa",
"google-authenticator",
"authenticator",
"totp",
"totp-tfa",
"totp-2fa",
"tfa",
"2fa",
"two-factor-authentication",
"timed-one-time-password",
"security"
],
"homepage": "https://github.com/codeFareith/cf_google_authenticator",
"readme": "README.md",
"time": "",
"license": [
"GPL-3.0-or-later"
],
"authors": [
{
"name": "Robin von den Bergen",
"email": "rvdb@fareith.de",
"homepage": "https://www.fareith.de",
"role": "developer"
}
],
"support": {
"email": "support@fareith.de",
"issues": "https://github.com/codeFareith/cf_google_authenticator/issues",
"wiki": "https://github.com/codeFareith/cf_google_authenticator/wiki",
"source": "https://github.com/codeFareith/cf_google_authenticator/releases",
"docs": "https://github.com/codeFareith/cf_google_authenticator/tree/master/Documentation",
"rss": "https://github.com/codeFareith/cf_google_authenticator/commits/master.atom"
},
"require": {
"typo3/cms-core": "^8.7 || ^9.5",
"typo3/cms-reports": "^8.7 || ^9.5",
"typo3/cms-setup": "^8.7 || ^9.5",
"ext-json": "*"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"typo3/testing-framework": "^3.4.2",
"phpunit/php-code-coverage": "5.3.2",
"codeception/codeception": "^4.1"
},
"conflict": {},
"replace": {
"codefareith/cf_google_authenticator": "self.version",
"typo3-ter/cf-google-authenticator": "self.version"
},
"provide": {},
"suggest": {
"typo3/cms-felogin": "Needed to support 2FA for frontend accounts."
},
"autoload": {
"psr-0": {},
"psr-4": {
"CodeFareith\\CfGoogleAuthenticator\\": "Classes/"
},
"classmap": [],
"files": [],
"exclude-from-classmap": [
"Tests/"
]
},
"autoload-dev": {
"psr-4": {
"CodeFareith\\CfGoogleAuthenticator\\Tests\\": "Tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": {},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/cf_google_authenticator ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/cf_google_authenticator"
],
"git-archive": "git archive -o \"${PWD##*/}_$(composer git-version).zip\" HEAD",
"git-version": "fn () { git tag -l --sort=-v:refname | grep -m 1 -o \"[0-9.]\\+${1:+-$1}$\"; }; fn"
},
"scripts-descriptions": {
"git-archive": "Creates a TER compilant zip archive of the extension based on the most recent tag.",
"git-version": "Returns the most recent version/tag number. You could also call e.g. 'docker git-version -- dev' to get the latest dev version (e.g. v1.2.x-dev)."
},
"extra": {
"branch-alias": {
"dev-master": "1.2.x-dev"
},
"typo3/cms": {
"extension-key": "cf_google_authenticator",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
},
"bin": [],
"archive": {},
"abandoned": false,
"non-feature-branches": []
}