PrinsFrank / standards

A collection of standards as PHP Enums: ISO3166, ISO4217, ISO639...
MIT License
375 stars 10 forks source link

Fix PHP version constraints #224

Closed szepeviktor closed 3 months ago

szepeviktor commented 3 months ago

for example ^8.2 means

so all three meant "up to 9.0"

https://semver.madewithlove.com/?package=php&constraint=%5E8.2 vs. https://semver.madewithlove.com/?package=php&constraint=~8.2.0

codecov[bot] commented 3 months ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Project coverage is 100.00%. Comparing base (0f57144) to head (26a2cfa).

Additional details and impacted files ```diff @@ Coverage Diff @@ ## main #224 +/- ## =========================================== Coverage 100.00% 100.00% Complexity 262 262 =========================================== Files 40 40 Lines 4168 4168 =========================================== Hits 4168 4168 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.

PrinsFrank commented 3 months ago

Thank you!!