diff options
Diffstat (limited to 'plugins/libcalendaring')
-rw-r--r-- | plugins/libcalendaring/composer.json | 25 | ||||
-rw-r--r-- | plugins/libcalendaring/libcalendaring.php | 5 |
2 files changed, 28 insertions, 2 deletions
diff --git a/plugins/libcalendaring/composer.json b/plugins/libcalendaring/composer.json new file mode 100644 index 0000000..07b8a66 --- /dev/null +++ b/plugins/libcalendaring/composer.json @@ -0,0 +1,25 @@ +{ + "name": "kolab/libcalendaring", + "type": "roundcube-plugin", + "description": "Library providing common functions for calendaring plugins", + "homepage": "http://git.kolab.org/roundcubemail-plugins-kolab/", + "license": "AGPLv3", + "version": "1.1.0", + "authors": [ + { + "name": "Thomas Bruederli", + "email": "bruederli@kolabsys.com", + "role": "Lead" + } + ], + "repositories": [ + { + "type": "composer", + "url": "http://plugins.roundcube.net" + } + ], + "require": { + "php": ">=5.3.0", + "roundcube/plugin-installer": ">=0.1.3" + } +} diff --git a/plugins/libcalendaring/libcalendaring.php b/plugins/libcalendaring/libcalendaring.php index 6eae2df..9277eaf 100644 --- a/plugins/libcalendaring/libcalendaring.php +++ b/plugins/libcalendaring/libcalendaring.php @@ -6,13 +6,14 @@ * Provides utility functions for calendar-related modules such as * - alarms display and dismissal * - attachment handling - * - recurrence computation and UI elements (TODO) + * - recurrence computation and UI elements * - ical parsing and exporting + * - itip scheduling protocol * * @version @package_version@ * @author Thomas Bruederli <bruederli@kolabsys.com> * - * Copyright (C) 2012, Kolab Systems AG <contact@kolabsys.com> + * Copyright (C) 2012-2014, Kolab Systems AG <contact@kolabsys.com> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as |