mikeerickson / phpunit-pretty-result-printer

PHPUnit Pretty Result Printer -- make your PHPUnit tests look pretty!
MIT License
1.2k stars 71 forks source link

Update TravisCI to build on PHP 7.1 and newer #31

Closed dbudwin closed 6 years ago

dbudwin commented 6 years ago

Since merging of pull request #28, PHP prior to 7.1 is no longer supported. This updates TravisCI to reflect that change and to build on modern versions of PHP and run tests.

mikeerickson commented 6 years ago

This PR has been resolved with a combination of travis config from this PR along with some additional updates.

dbudwin commented 6 years ago

You beat me to it! I would test it out though since I expect the 5.6 and 7.0 builds to now fail. You could do something like:

matrix:
  fast_finish: true
  allow_failures:
    - php
      - 5.6
      - 7.0

Or make a branch for legacy support for older versions of PHP. Thanks for this awesome package by the way!