blob: 6b9a809dba0df81b23147b661f852dadacacef96 (
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
|
<?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>webhooks</id>
<name>Nextcloud webhook support</name>
<summary>Nextcloud webhook support</summary>
<description>Nextcloud webhook support</description>
<version>1.0.0-dev</version>
<licence>agpl</licence>
<author>Côme Chilliet</author>
<namespace>Webhooks</namespace>
<types>
<filesystem/>
</types>
<category>customization</category>
<website>https://github.com/nextcloud/server</website>
<bugs>https://github.com/nextcloud/server/issues</bugs>
<repository>https://github.com/nextcloud/server.git</repository>
<dependencies>
<nextcloud min-version="30" max-version="30"/>
</dependencies>
<commands>
<command>OCA\Webhooks\Command\Index</command>
</commands>
<settings>
<admin>OCA\Webhooks\Settings\Admin</admin>
</settings>
</info>
|