dsoares / roundcube-lastlogin

Roundcube plugin to save and show user login information and login history.
GNU General Public License v3.0
16 stars 12 forks source link

Doesn't install on 1.5beta #31

Open agabellini opened 3 years ago

agabellini commented 3 years ago

Hello,

the installation via composer doesn't work.

  Problem 1
    - dsoares/lastlogin[0.1.0, ..., 0.1.14, 1.0.0, ..., 1.2.0] require roundcube/plugin-installer ~0.1.3 -> found roundcube/plugin-installer[0.1.3, ..., 0.1.10] but it conflicts with your root composer.json require (~0.2.0).
    - Root composer.json requires dsoares/lastlogin * -> satisfiable by dsoares/lastlogin[0.1.0, ..., 0.1.14, 1.0.0, 1.1.0, 1.2.0].

The manual installation works.

Thanks, Andrea

valarauco commented 4 months ago

Hi!

Same problem here with RC version 1.6.6.

valarauco commented 4 months ago

Little update:

It seems that RC composer.json gives priority to "https://plugins.roundcube.net/" and not to "https://repo.packagist.org". On Packagist, lastlogin is on version 1.3.0 but plugins.roundcube is stuck on 1.2.0.

You can add an "exclude" that looks like this:

    "repositories": [
        {
            "type": "composer",
            "url": "https://plugins.roundcube.net",
            "exclude": ["dsoares/lastlogin"]
        }
    ],