From 109fcd2dc1a42c9c06b24aba609e98ecfdf8bf6b Mon Sep 17 00:00:00 2001 From: Ben Freke Date: Thu, 4 Jun 2020 13:47:32 +1000 Subject: [PATCH 1/2] Removes unsupported PHP versions I've made the assumption that this won't delete any images from Docker hub, so this is a non-breaking change. --- .travis.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7cad066..13d8db6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,15 +24,6 @@ services: ### env: matrix: - - PHPCS=2 PHP=5.6 - - PHPCS=3 PHP=5.6 - - PHPCS=latest PHP=5.6 - - PHPCS=2 PHP=7.0 - - PHPCS=3 PHP=7.0 - - PHPCS=latest PHP=7.0 - - PHPCS=2 PHP=7.1 - - PHPCS=3 PHP=7.1 - - PHPCS=latest PHP=7.1 - PHPCS=2 PHP=7.2 - PHPCS=3 PHP=7.2 - PHPCS=latest PHP=7.2 From cf6a55edf9b9fbda65f57eb951e6018ecf1b02c2 Mon Sep 17 00:00:00 2001 From: Ben Freke Date: Thu, 4 Jun 2020 13:47:38 +1000 Subject: [PATCH 2/2] Adds PHP7.4 If you're using the latest version of PHP, you're unlikely to be using phpcs v2. If I'm reading this correctly, line 37 would already be creating a PHPCS v4 PHP 7.4 image. This just makes it explicit that there is a PHP 7.4 image available. --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 13d8db6..d1e646f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,6 +30,8 @@ env: - PHPCS=2 PHP=7.3 - PHPCS=3 PHP=7.3 - PHPCS=latest PHP=7.3 + - PHPCS=3 PHP=7.4 + - PHPCS=latest PHP=7.4 - PHPCS=2 PHP=latest - PHPCS=3 PHP=latest - PHPCS=latest PHP=latest