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

info.xml « appinfo - github.com/nextcloud/twofactor_gateway.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 439bfad0dfd387b9df994e2f18d0f95d5171995a (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
<?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_gateway</id>
	<name>Two-Factor Gateway</name>
	<summary>Two-factor gateway providers (SMS, Telegram, Signal)</summary>
	<description>A set of Nextcloud two-factor providers to send authentication codes via Signal, SMS and Telegram.</description>
	<version>0.9.0</version>
	<licence>agpl</licence>
	<author>Christoph Wurst</author>
	<namespace>TwoFactorGateway</namespace>
	<documentation>
		<admin>https://nextcloud-twofactor-gateway.readthedocs.io/en/latest/Admin%20Documentation/</admin>
	</documentation>
	<category>security</category>
	<website>https://github.com/nextcloud/twofactor_gateway</website>
	<bugs>https://github.com/nextcloud/twofactor_gateway/issues</bugs>
	<screenshot>https://raw.githubusercontent.com/ChristophWurst/twofactor_gateway/3f895bc997c1a3a38c9bae16ccae8bd499af864e/screenshots/settings.png</screenshot>
	<screenshot>https://raw.githubusercontent.com/ChristophWurst/twofactor_gateway/3f895bc997c1a3a38c9bae16ccae8bd499af864e/screenshots/challenge.png</screenshot>
	<dependencies>
		<php min-version="7.0" max-version="7.2"/>
		<nextcloud min-version="14" max-version="15"/>
	</dependencies>

	<two-factor-providers>
		<provider>OCA\TwoFactorGateway\Provider\SignalProvider</provider>
		<provider>OCA\TwoFactorGateway\Provider\SmsProvider</provider>
		<provider>OCA\TwoFactorGateway\Provider\TelegramProvider</provider>
	</two-factor-providers>
	<commands>
		<command>OCA\TwoFactorGateway\Command\Configure</command>
		<command>OCA\TwoFactorGateway\Command\Status</command>
		<command>OCA\TwoFactorGateway\Command\Test</command>
	</commands>
	<settings>
		<personal>OCA\TwoFactorGateway\Settings\PersonalSettings</personal>
	</settings>
</info>