Welcome to mirror list, hosted at ThFree Co, Russian Federation.

info.xml « appinfo - github.com/nextcloud/twofactor_u2f.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5182604693cc143f3d963e251b3577d5474539bc (plain)
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
<?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_u2f</id>
	<name>Two Factor U2F</name>
	<summary>U2F two-factor provider</summary>
	<description>A two-factor provider for U2F devices</description>
	<version>2.1.0</version>
	<licence>agpl</licence>
	<author>Christoph Wurst</author>
	<namespace>TwoFactorU2F</namespace>
	<category>security</category>

	<website>https://github.com/nextcloud/twofactor_u2f#readme</website>
	<bugs>https://github.com/nextcloud/twofactor_u2f/issues</bugs>
	<repository type="git">https://github.com/nextcloud/twofactor_u2f.git</repository>
	<screenshot>https://raw.githubusercontent.com/nextcloud/twofactor_u2f/4e0542d888236b7f212bed0b536244d08803466f/screenshots/challenge.png</screenshot>
	<screenshot>https://raw.githubusercontent.com/nextcloud/twofactor_u2f/4e0542d888236b7f212bed0b536244d08803466f/screenshots/settings.png</screenshot>

	<dependencies>
		<php min-version="7.0" max-version="7.3"></php>
		<nextcloud min-version="15" max-version="16" />
	</dependencies>

	<two-factor-providers>
		<provider>OCA\TwoFactorU2F\Provider\U2FProvider</provider>
	</two-factor-providers>

	<settings>
		<personal>OCA\TwoFactorU2F\Settings\Personal</personal>
	</settings>
	<activity>
		<settings>
			<setting>OCA\TwoFactorU2F\Activity\Setting</setting>
		</settings>
		<providers>
			<provider>OCA\TwoFactorU2F\Activity\Provider</provider>
		</providers>
	</activity>
</info>