Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upA lot of warnings in travis for newer php versions #163
Comments
I think option # 1 makes sense because <=7.1 versions already reached End of Life as per PHP documentation. |
The problem is that newer versions are not working on the old php versions - we are staying somehow at a point where it would be the easiest solution to just split up the development with a v3 branch and a new v4 that is only compatible with php 7.1 (I guess will be the matching point where all libraries work on all new versions).
Another option would be to upgrade the packages only in travis (split the jobs to use different versions (with
composer require phpunit:8.*
for example).Originally posted by @PierrickVoulet in #162 (comment)