-
Notifications
You must be signed in to change notification settings - Fork 1
/
extensionupdates.xml
44 lines (44 loc) · 1.74 KB
/
extensionupdates.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
44
<?xml version="1.0" encoding="UTF-8"?>
<extension type="plugin" group="task" method="upgrade">
<name>plg_task_extensionupdates</name>
<author>Tobias Zulauf</author>
<creationDate>2024-05-14</creationDate>
<copyright>Copyright (C) 2024 Tobias Zulauf (jah-tz.de). All rights reserved.</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
<authorEmail>[email protected]</authorEmail>
<authorUrl>www.jah-tz.de</authorUrl>
<version>1.0.1</version>
<description>PLG_TASK_EXTENSIONUPDATES_XML_DESCRIPTION</description>
<namespace path="src">Joomla\Plugin\Task\ExtensionUpdates</namespace>
<files>
<folder>forms</folder>
<folder>language</folder>
<folder plugin="extensionupdates">services</folder>
<folder>sql</folder>
<folder>src</folder>
</files>
<install>
<sql>
<file driver="mysql" charset="utf8">sql/mysql/install.sql</file>
<file driver="postgresql" charset="utf8">sql/postgresql/install.sql</file>
<file driver="pgsql" charset="utf8">sql/postgresql/install.sql</file>
</sql>
</install>
<uninstall>
<sql>
<file driver="mysql" charset="utf8">sql/mysql/uninstall.sql</file>
<file driver="postgresql" charset="utf8">sql/postgresql/uninstall.sql</file>
<file driver="pgsql" charset="utf8">sql/postgresql/uninstall.sql</file>
</sql>
</uninstall>
<update>
<schemas>
<schemapath type="mysql">sql/mysql/updates</schemapath>
<schemapath type="postgresql">sql/postgresql/updates</schemapath>
<schemapath type="pgsql">sql/postgresql/updates</schemapath>
</schemas>
</update>
<updateservers>
<server type="extension" name="ExtensionUpdates Update Site">https://raw.githubusercontent.com/zero-24/plg_task_extensionupdates/master/update.xml</server>
</updateservers>
</extension>