-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Closed
Description
Description
The last time this has been done for PHP 7.4[1]; since then the requirement is ICU >= 50.1, which has been released 12 years ago. In my opinion, we should bump the requirement (not sure exactly to which version though). That may allow us to drop some conditional compilation, and also some test cases for old ICU versions. E.g.
<?php if (version_compare(INTL_ICU_VERSION, '53.1') >= 0) die('skip for ICU < 53.1'); ?> |
Note that ICU 53.1 has been released more than 10 years ago.
[1] 20fa2e7
devnexen and samdark