From 4de40774fe23dcd9811a2aef35f7bfd6cf6fdc6f Mon Sep 17 00:00:00 2001 From: Simon Wisselink Date: Tue, 5 May 2020 09:56:44 +0200 Subject: [PATCH] Test travis config for PHP5 versions --- .travis.yml | 20 +++++++++++++------- CHANGELOG.md | 3 +++ 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 38b75919..6b3dedcf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,14 +5,20 @@ sudo: false dist: trusty +php: +# - 5.2 # we cannot run 5.2 because phpunit is installed using composer + - 5.3 + - 5.4 + - 5.5 + - 5.6 + - 7.0 + - 7.1 + - 7.2 + - 7.3 + - 7.4 + - nightly + matrix: - include: - - php: 7.0 - - php: 7.1 - - php: 7.2 - - php: 7.3 - - php: 7.4 - - php: nightly fast_finish: true allow_failures: - php: nightly diff --git a/CHANGELOG.md b/CHANGELOG.md index c03ae940..9e052a44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed +- Travis unit tests now run for all php versions >= 5.3 + ### Fixed - PHP5.3 compatability fixes