forked from codeFareith/cf_google_authenticator
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathext_emconf.php
More file actions
58 lines (51 loc) · 1.56 KB
/
ext_emconf.php
File metadata and controls
58 lines (51 loc) · 1.56 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
<?php
/**
* Declaration file for TYPO3 CMS Extension 'cf_google_authenticator'
*
* This file contains a declaration of what this extension is and does for the
* Extension Manager.
*
* @author Robin 'codeFareith' von den Bergen <robinvonberg@gmx.de>
* @copyright (c) 2018-2019 by Robin von den Bergen
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @version 1.0.0
*
* @link https://github.com/codeFareith/cf_google_authenticator
* @see https://www.fareith.de
* @see https://typo3.org
*/
/** @var string $_EXTKEY */
$EM_CONF[$_EXTKEY] = [
'title' => '[codeFareith] Google Authenticator',
'description' => 'Enable Google 2FA (two factor authentication) for both, frontend- and backend accounts.',
'category' => 'misc',
'author' => 'Robin "codeFareith" von den Bergen',
'author_email' => 'robin@vondenbergen.de',
'author_company' => '',
'state' => 'stable',
'version' => '1.2.4',
'uploadFolders' => false,
'createDirs' => '',
'clearCacheOnLoad' => true,
'constraints' => [
'depends' => [
'php' => '7.1-',
'typo3' => '8.7.0-9.5.99',
],
'conflicts' => [
],
'suggests' => [
'felogin' => '8.7.0-9.5.99',
],
],
'autoload' => [
'psr-4' => [
'CodeFareith\\CfGoogleAuthenticator\\' => 'Classes',
],
],
'autoload-dev' => [
'psr-4' => [
'CodeFareith\\CfGoogleAuthenticator\\Tests\\' => 'Tests',
],
],
];