diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-12-10 10:02:11 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-12-10 10:02:11 +0100 |
commit | 10ea055684c6600a63c28865202f24662c0e9a21 (patch) | |
tree | 51f96eeef1d16335f598d02b65dcc032c867209d | |
parent | 1143428dcb70976ced8e33c47c71685d5757cca5 (diff) |
Add missing composer.json files (skipped because of .gitignore)
-rw-r--r-- | plugins/autologon/composer.json | 24 | ||||
-rw-r--r-- | plugins/example_addressbook/composer.json | 24 | ||||
-rw-r--r-- | plugins/http_authentication/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 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" + } +} |