changeset 15:459652c6089c

distro
author Charlie Root
date Sat, 13 Jan 2018 09:44:19 -0500
parents ba938c2e7146
children 165944ca08e7
files plugins/calendar/composer.json plugins/libcalendaring/composer.json vendor/endroid/qr-code/composer.json vendor/sabre/vobject/composer.json
diffstat 4 files changed, 154 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/plugins/calendar/composer.json	Sat Jan 13 09:44:19 2018 -0500
@@ -0,0 +1,37 @@
+{
+    "name": "kolab/calendar",
+    "type": "roundcube-plugin",
+    "description": "Calendar plugin",
+    "homepage": "https://git.kolab.org/diffusion/RPK/",
+    "keywords": ["apps","calendar","ical","itip"],
+    "license": "AGPLv3",
+    "authors": [
+        {
+            "name": "Alensader Machniak",
+            "email": "machniak@kolabsys.com",
+            "role": "Lead"
+        },
+        {
+            "name": "Thomas Bruederli",
+            "email": "thomas@roundcube.net",
+            "role": "Developer"
+        }
+    ],
+    "repositories": [
+        {
+            "type": "composer",
+            "url": "https://plugins.roundcube.net"
+        }
+    ],
+    "require": {
+        "php": ">=5.3.0",
+        "roundcube/plugin-installer": ">=0.1.3",
+        "kolab/libcalendaring": ">=3.3.3"
+    },
+    "extra": {
+        "roundcube": {
+            "min-version": "1.3.0",
+            "sql-dir": "drivers/database/SQL"
+        }
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/plugins/libcalendaring/composer.json	Sat Jan 13 09:44:19 2018 -0500
@@ -0,0 +1,30 @@
+{
+    "name": "kolab/libcalendaring",
+    "type": "roundcube-plugin",
+    "description": "Library providing common functions for calendaring plugins",
+    "homepage": "https://git.kolab.org/diffusion/RPK/",
+    "license": "AGPLv3",
+    "authors": [
+        {
+            "name": "Alensader Machniak",
+            "email": "machniak@kolabsys.com",
+            "role": "Lead"
+        }
+    ],
+    "repositories": [
+        {
+            "type": "composer",
+            "url": "https://plugins.roundcube.net"
+        }
+    ],
+    "require": {
+        "php": ">=5.4.0",
+        "roundcube/plugin-installer": ">=0.1.3",
+        "sabre/vobject": "~3.3.3"
+    },
+    "extra": {
+        "roundcube": {
+            "min-version": "1.3.0"
+        }
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/vendor/endroid/qr-code/composer.json	Sat Jan 13 09:44:19 2018 -0500
@@ -0,0 +1,37 @@
+{
+    "name": "endroid/qrcode",
+    "description": "Endroid QR Code",
+    "keywords": ["endroid", "qrcode", "qr", "code"],
+    "homepage": "https://github.com/endroid/QrCode",
+    "type": "library",
+    "license": "MIT",
+    "authors": [
+        {
+            "name": "Jeroen van den Enden",
+            "email": "info@endroid.nl",
+            "homepage": "http://endroid.nl/"
+        }
+    ],
+    "require": {
+        "php": ">=5.3.0",
+        "ext-gd": "*"
+    },
+    "autoload": {
+        "psr-4": {
+            "Endroid\\QrCode\\": "src/"
+        }
+    },
+    "autoload-dev": {
+        "psr-4": {
+            "Endroid\\QrCode\\": "tests/"
+        }
+    },
+    "config": {
+        "bin-dir": "bin"
+    },
+    "extra": {
+        "branch-alias": {
+            "dev-master": "1.x-dev"
+        }
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/vendor/sabre/vobject/composer.json	Sat Jan 13 09:44:19 2018 -0500
@@ -0,0 +1,50 @@
+{
+    "name": "sabre/vobject",
+    "description" : "The VObject library for PHP allows you to easily parse and manipulate iCalendar and vCard objects",
+    "keywords" : [ "VObject", "iCalendar", "vCard", "jCard", "jCal" ],
+    "homepage" : "http://sabre.io/vobject/",
+    "license" : "BSD-3-Clause",
+    "require" : {
+        "php"          : ">=5.3.1",
+        "ext-mbstring" : "*"
+    },
+    "require-dev" : {
+        "phpunit/phpunit" : "*",
+        "squizlabs/php_codesniffer": "*"
+    },
+    "authors" : [
+        {
+            "name" : "Evert Pot",
+            "email" : "me@evertpot.com",
+            "homepage" : "http://evertpot.com/",
+            "role" : "Developer"
+        },
+        {
+            "name" : "Dominik Tobschall",
+            "email" : "dominik@fruux.com",
+            "homepage" : "http://tobschall.de/",
+            "role" : "Developer"
+        }
+    ],
+    "support" : {
+        "forum" : "https://groups.google.com/group/sabredav-discuss",
+        "source" : "https://github.com/fruux/sabre-vobject"
+    },
+    "autoload" : {
+        "psr-4" : {
+            "Sabre\\VObject\\" : "lib/"
+        }
+    },
+    "bin" : [
+        "bin/vobject",
+        "bin/generate_vcards"
+    ],
+    "extra" : {
+        "branch-alias" : {
+            "dev-master" : "3.2.x-dev"
+        }
+    },
+    "config" : {
+        "bin-dir" : "bin"
+    }
+}