From 10ea055684c6600a63c28865202f24662c0e9a21 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Wed, 10 Dec 2014 10:02:11 +0100 Subject: Add missing composer.json files (skipped because of .gitignore) --- plugins/autologon/composer.json | 24 ++++++++++++++++++++++++ plugins/example_addressbook/composer.json | 24 ++++++++++++++++++++++++ plugins/http_authentication/composer.json | 24 ++++++++++++++++++++++++ 3 files changed, 72 insertions(+) create mode 100644 plugins/autologon/composer.json create mode 100644 plugins/example_addressbook/composer.json create mode 100644 plugins/http_authentication/composer.json (limited to 'plugins') diff --git a/plugins/autologon/composer.json b/plugins/autologon/composer.json new file mode 100644 index 000000000..c332d3bd7 --- /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 000000000..fe06d6d9c --- /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 000000000..ab01435d4 --- /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" + } +} -- cgit v1.2.3