diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-12-08 13:58:47 (GMT) |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-12-08 13:58:47 (GMT) |
commit | d4e830cde7725f97e297bce98804baffa563db87 (patch) | |
tree | 9f38d8a41b5fef3e674067640d3fac312e8614fc /plugins/kolab_config | |
parent | feb0796f1d5a51b93658fd9ed276a03455ac9725 (diff) | |
download | roundcubemail-plugins-kolab-d4e830cde7725f97e297bce98804baffa563db87.tar.gz |
Unify license string, replace package.xml with composer.json
Diffstat (limited to 'plugins/kolab_config')
-rw-r--r-- | plugins/kolab_config/composer.json | 26 | ||||
-rw-r--r-- | plugins/kolab_config/package.xml | 55 |
2 files changed, 26 insertions, 55 deletions
diff --git a/plugins/kolab_config/composer.json b/plugins/kolab_config/composer.json new file mode 100644 index 0000000..d87e8ac --- /dev/null +++ b/plugins/kolab_config/composer.json @@ -0,0 +1,26 @@ +{ + "name": "kolab/kolab_config", + "type": "roundcube-plugin", + "description": "Kolab configuration storage", + "homepage": "http://git.kolab.org/roundcubemail-plugins-kolab/", + "license": "AGPLv3", + "version": "3.0.0", + "authors": [ + { + "name": "Aleksander Machniak", + "email": "machniak@kolabsys.com", + "role": "Lead" + } + ], + "repositories": [ + { + "type": "composer", + "url": "http://plugins.roundcube.net" + } + ], + "require": { + "php": ">=5.3.0", + "roundcube/plugin-installer": ">=0.1.3", + "kolab/libkolab": ">=1.1.0", + } +} diff --git a/plugins/kolab_config/package.xml b/plugins/kolab_config/package.xml deleted file mode 100644 index 5e6d307..0000000 --- a/plugins/kolab_config/package.xml +++ /dev/null @@ -1,55 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<package xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" packagerversion="1.9.0" version="2.0" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 - http://pear.php.net/dtd/tasks-1.0.xsd - http://pear.php.net/dtd/package-2.0 - http://pear.php.net/dtd/package-2.0.xsd"> - <name>kolab_config</name> - <uri>http://git.kolab.org/roundcubemail-plugins-kolab/</uri> - <summary>Kolab configuration storage</summary> - <description> - Plugin to use Kolab server as a configuration storage. Provides an API to handle - configuration according to http://wiki.kolab.org/KEP:9. - </description> - <lead> - <name>Aleksander Machniak</name> - <user>machniak</user> - <email>machniak@kolabsys.com</email> - <active>yes</active> - </lead> - <date>2014-07-31</date> - <version> - <release>3.0</release> - <api>3.0</api> - </version> - <stability> - <release>stable</release> - <api>stable</api> - </stability> - <license uri="http://www.gnu.org/licenses/agpl.html">GNU AGPLv3</license> - <notes>-</notes> - <contents> - <dir baseinstalldir="/" name="/"> - <file name="kolab_config.php" role="php"> - <tasks:replace from="@name@" to="name" type="package-info"/> - <tasks:replace from="@package_version@" to="version" type="package-info"/> - </file> - <file name="LICENSE" role="data"></file> - </dir> - <!-- / --> - </contents> - <dependencies> - <required> - <php> - <min>5.2.1</min> - </php> - <pearinstaller> - <min>1.7.0</min> - </pearinstaller> - <package> - <name>libkolab</name> - <uri>http://kolabsys.com</uri> - </package> - </required> - </dependencies> - <phprelease/> -</package> |