-
Notifications
You must be signed in to change notification settings - Fork 7
/
info.xml
43 lines (38 loc) · 1.39 KB
/
info.xml
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
<?xml version="1.0"?>
<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>0.3.1</version>
<licence>agpl</licence>
<author>Christoph Wurst</author>
<author>Michael Blumenstein</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>
<dependencies>
<php min-version="7.3" max-version="8.1"/>
<database>sqlite</database>
<database>mysql</database>
<database>pgsql</database>
<lib>gmp</lib>
<nextcloud min-version="21" max-version="24" />
</dependencies>
<two-factor-providers>
<provider>OCA\TwoFactorWebauthn\Provider\WebAuthnProvider</provider>
</two-factor-providers>
<commands>
<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>