-
Notifications
You must be signed in to change notification settings - Fork 17
Closed
Description
Version: "roundcube/plugin-installer": "dev-master"
I found out a small bug in Roundcube/Composer/PluginInstaller.php at line 168:
$constraint = new VersionConstraint($version, $operator);
Since the constructor of VersionConstraint declares its parameters as $operator and $version, in this order, this call causes an error when validating "extras". The fix is simple, just change the order at line 168 to comply with the constructor:
$constraint = new VersionConstraint($operator, $version);
Regards,
Cristiano
Metadata
Metadata
Assignees
Labels
No labels