Drop deprecated ExtLibeventLoop
and ExtLibevLoop
(PHP 5 only)
#273
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This simple changeset drops the legacy and long deprecated
ExtLibeventLoop
(ext-libevent
) andExtLibevLoop
(ext-libev
) loop implementations. Both extensions will be used only on legacy PHP 5 and never received any updates for PHP 7+. TheExtLibeventLoop
has been replaced byExtEventLoop
, whileExtLibevLoop
has been replaced byExtEvLoop
, both of which continue to be fully supported. As a consequence, while technically a BC break, there is little chance this will affect any existing projects.Once merged, I will update the project to require PHP 7.1+ as discussed in #271 in a follow-up PR. I'm also going to clean up the test matrix now that most of the legacy cruft has been removed (see countless hours spent on #230, #264, #268, #270, and many others).
Builds on top of #234, #128, #127, #62, #55, #40, and others