You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 2, 2023. It is now read-only.
$range = newexpression('~4.1');
$range->satisfiedBy(newversion('4.9.6')); //false -> should be true
The tilde operator should work like the following example from composer: ~1.2 is equivalent to >=1.2 <2.0.0. It's like you documented in your Readme, but it's actually not working.
The text was updated successfully, but these errors were encountered:
I got some problems with version comparisons.
The tilde operator should work like the following example from composer:
~1.2
is equivalent to>=1.2 <2.0.0
. It's like you documented in your Readme, but it's actually not working.The text was updated successfully, but these errors were encountered: