-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathext_localconf.php
More file actions
24 lines (21 loc) · 652 Bytes
/
ext_localconf.php
File metadata and controls
24 lines (21 loc) · 652 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
defined('TYPO3') or die();
use Derhansen\SfYubikey\Authentication\YubikeyAuthService;
use TYPO3\CMS\Core\Utility\ExtensionManagementUtility;
// Register the auth service
ExtensionManagementUtility::addService(
'sf_yubikey',
'auth',
YubikeyAuthService::class,
[
'title' => 'FE/BE YubiKey two-factor OTP Authentication',
'description' => 'Two-factor authentication with a YubiKey OTP',
'subtype' => 'authUserFE,authUserBE',
'available' => true,
'priority' => 80,
'quality' => 80,
'os' => '',
'exec' => '',
'className' => YubikeyAuthService::class,
]
);