Roundcube Community Forum

 

plugins.roundcube.net plugins installed on wrong path

Started by Davidegb, July 13, 2014, 07:36:55 PM

Previous topic - Next topic

Davidegb

Hi

I've been trying to install plugins from plugins.roundcube.net. This is my composer.json:


{
    "name": "roundcube/roundcubemail",
    "description": "The Roundcube Webmail suite",
    "license": "GPL-3.0+",
    "repositories": [
        {
            "type": "composer",
            "url": "http://plugins.roundcube.net/"
        }
    ],
    "require": {
        "php": ">=5.3.0",
        "roundcube/plugin-installer": ">=0.1.3",
        "cor/compose_addressbook": "dev-master",
        "cor/message_highlight": "dev-master",
        "mfreiholz/persistent_login": "dev-master",
        "cor/keyboard_shortcuts": "dev-usersetting",
        "cor/listcommands": "dev-master"
    },
    "minimum-stability": "dev"
}


After running composer.phar update , some plugins are installed on $ROUNDCUBE_ROOT/plugins, so I can use them just by adding them in config['plugins'] option, but some other are installed in $ROUNDCUBE_ROOT/vendor, making them unusable without copying them on /plugins directoy

Is this intended behaviour with some plugins or am I doing something wrong?