Closed
Description
I personally use PHP 7.2 but I noticed after forking the project that its PHP dependency is currently set to "php": ">=5.3.0"
in composer.json. However, throughout the ExtEvLoop class, arrays are declared like this: private $readStreams = [];
which is a PHP 5.4 feature and will break when running under PHP 5.3.
Since most of the other ReactPHP projects already sets PHP 5.4 as the lower limit we may as well move it up for this project too.
Would you like me to fix it in my fork and send you a PR?