-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathinfo.xml
More file actions
54 lines (47 loc) · 1.79 KB
/
info.xml
File metadata and controls
54 lines (47 loc) · 1.79 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
<?xml version="1.0"?>
<!--
- SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<info xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
<id>twofactor_webauthn</id>
<name>Two-Factor WebAuthn</name>
<summary>WebAuthn two-factor provider</summary>
<description>A two-factor provider for WebAuthn devices</description>
<version>2.4.0</version>
<licence>agpl</licence>
<author>Christoph Wurst</author>
<author>Michael Blumenstein</author>
<author>Richard Steinmetz</author>
<namespace>TwoFactorWebauthn</namespace>
<category>security</category>
<website>https://github.com/nextcloud/twofactor_webauthn#readme</website>
<bugs>https://github.com/nextcloud/twofactor_webauthn/issues</bugs>
<repository>https://github.com/nextcloud/twofactor_webauthn.git</repository>
<screenshot>https://raw.githubusercontent.com/nextcloud/twofactor_webauthn/main/screenshots/challenge.png</screenshot>
<dependencies>
<php min-version="8.1" max-version="8.4"/>
<lib>gmp</lib>
<nextcloud min-version="30" max-version="32" />
</dependencies>
<repair-steps>
<post-migration>
<step>OCA\TwoFactorWebauthn\Migration\RepairProviderRegistrations</step>
</post-migration>
</repair-steps>
<two-factor-providers>
<provider>OCA\TwoFactorWebauthn\Provider\WebAuthnProvider</provider>
</two-factor-providers>
<commands>
<command>OCA\TwoFactorWebauthn\Command\CleanUp</command>
<command>OCA\TwoFactorWebauthn\Command\MigrateU2F</command>
</commands>
<activity>
<settings>
<setting>OCA\TwoFactorWebauthn\Activity\Setting</setting>
</settings>
<providers>
<provider>OCA\TwoFactorWebauthn\Activity\Provider</provider>
</providers>
</activity>
</info>