You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Robin Thoni 6486178dfa updated postgres docker; updated rounecube to 1.3.6 6 anni fa
..
src updated postgres docker; updated rounecube to 1.3.6 6 anni fa
README.md updated postgres docker; updated rounecube to 1.3.6 6 anni fa
composer.json updated postgres docker; updated rounecube to 1.3.6 6 anni fa

README.md

Plugin Installer for Roundcube

This installer ensures that plugins end up in the correct directory:

  • <roundcube-root>/plugins/plugin-name

Minimum setup

  • create a composer.json file in your plugin’s repository
  • add the following contents

sample composer.json for plugins

{
    "name": "yourvendor/plugin-name",
    "license": "the license",
    "description": "tell the world what your plugin is good at",
    "type": "roundcube-plugin",
    "authors": [
        {
            "name": "<your-name>",
            "email": "<your-email>"
        }
    ],
    "repositories": [
        {
            "type": "composer",
            "url": "http://plugins.roundcube.net"
        }
    ]
    "require": {
        "roundcube/plugin-installer": "*"
    },
    "minimum-stability": "dev-master"
}

Installation

  • clone Roundcube
  • cp composer.json-dist composer.json
  • add your plugin in the require section of composer.json
  • composer.phar install

Read the whole story at plugins.roundcube.net.