From 10ea055684c6600a63c28865202f24662c0e9a21 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Wed, 10 Dec 2014 04:02:11 -0500 Subject: [PATCH] Add missing composer.json files (skipped because of .gitignore) --- plugins/http_authentication/composer.json | 24 ++++++++++++ plugins/example_addressbook/composer.json | 24 ++++++++++++ plugins/autologon/composer.json | 24 ++++++++++++ 3 files changed, 72 insertions(+), 0 deletions(-) diff --git a/plugins/autologon/composer.json b/plugins/autologon/composer.json new file mode 100644 index 0000000..c332d3b --- /dev/null +++ b/plugins/autologon/composer.json @@ -0,0 +1,24 @@ +{ + "name": "roundcube/autologon", + "type": "roundcube-plugin", + "description": "Sample plugin to try out some hooks", + "license": "GPLv3+", + "version": "1.0", + "authors": [ + { + "name": "Thomas Bruederli", + "email": "roundcube@gmail.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/example_addressbook/composer.json b/plugins/example_addressbook/composer.json new file mode 100644 index 0000000..fe06d6d --- /dev/null +++ b/plugins/example_addressbook/composer.json @@ -0,0 +1,24 @@ +{ + "name": "roundcube/example_addressbook", + "type": "roundcube-plugin", + "description": "Sample plugin to add a new address book with just a static list of contacts", + "license": "GPLv3+", + "version": "1.0", + "authors": [ + { + "name": "Thomas Bruederli", + "email": "roundcube@gmail.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/http_authentication/composer.json b/plugins/http_authentication/composer.json new file mode 100644 index 0000000..ab01435 --- /dev/null +++ b/plugins/http_authentication/composer.json @@ -0,0 +1,24 @@ +{ + "name": "roundcube/http_authentication", + "type": "roundcube-plugin", + "description": "HTTP Basic Authentication", + "license": "GPLv3+", + "version": "1.5", + "authors": [ + { + "name": "Thomas Bruederli", + "email": "roundcube@gmail.com", + "role": "Lead" + } + ], + "repositories": [ + { + "type": "composer", + "url": "http://plugins.roundcube.net" + } + ], + "require": { + "php": ">=5.3.0", + "roundcube/plugin-installer": ">=0.1.3" + } +} -- Gitblit v1.9.1