Skip to content

Commit

Permalink
Fix bad version compare
Browse files Browse the repository at this point in the history
  • Loading branch information
soullivaneuh committed Apr 19, 2016
1 parent 9bf86db commit fb5d53f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/VersionsCheckPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public static function satisfiesComposerVersion()
return true;
}

return version_compare(Composer::VERSION, self::COMPOSER_MIN_VERSION, '>');
return version_compare(Composer::VERSION, self::COMPOSER_MIN_VERSION, '>=');
}

/**
Expand Down

0 comments on commit fb5d53f

Please sign in to comment.