forked from codeFareith/cf_google_authenticator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolves: codeFareith#183
1 parent
6e34453
commit e54bc01
Showing
11 changed files
with
65 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
return [ | ||
\CodeFareith\CfGoogleAuthenticator\Domain\Model\FrontendUser::class => [ | ||
'tableName' => 'fe_users', | ||
], | ||
\CodeFareith\CfGoogleAuthenticator\Domain\Model\BackendUser::class => [ | ||
'tableName' => 'be_users', | ||
], | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,36 @@ | ||
<?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. | ||
|
||
/*************************************************************** | ||
* Extension Manager/Repository config file for ext "cf_google_authenticator". | ||
* | ||
* @author Robin 'codeFareith' von den Bergen <[email protected]> | ||
* @copyright (c) 2018-2019 by Robin von den Bergen | ||
* @license http://opensource.org/licenses/gpl-license.php GNU Public License | ||
* @version 1.0.0 | ||
* Auto generated 23-11-2020 17:42 | ||
* | ||
* @link https://github.com/codeFareith/cf_google_authenticator | ||
* @see https://www.fareith.de | ||
* @see https://typo3.org | ||
*/ | ||
|
||
/** @var string $_EXTKEY */ | ||
* Manual updates: | ||
* Only the data in the array - everything else is removed by next | ||
* writing. "version" and "dependencies" must not be touched! | ||
***************************************************************/ | ||
|
||
$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' => '[email protected]', | ||
'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', | ||
'typo3' => '9.5.0-10.4.99', | ||
], | ||
'conflicts' => [ | ||
], | ||
'suggests' => [ | ||
'felogin' => '8.7.0-9.5.99', | ||
'felogin' => '9.5.0-10.4.99', | ||
], | ||
], | ||
|
||
|
@@ -56,3 +45,4 @@ | |
], | ||
], | ||
]; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.