From 896ef82246f0bf043fc586ce5124af532be7f82c Mon Sep 17 00:00:00 2001 From: Zach Borboa Date: Sun, 9 Dec 2018 20:01:47 -0800 Subject: [PATCH] Fix #560: Run continuous integration tests on version 7.3 --- .travis.yml | 2 ++ README.md | 2 +- tests/before_script.sh | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 7284551..f2bf1c2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,6 +20,8 @@ matrix: dist: trusty - php: 7.2 dist: trusty + - php: 7.3 + dist: trusty - php: hhvm dist: trusty - php: hhvm-nightly diff --git a/README.md b/README.md index 1b39c93..e03c9c2 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ For latest commit version: ### Requirements -PHP Curl Class works with PHP 5.3, 5.4, 5.5, 5.6, 7.0, 7.1, 7.2, and HHVM. +PHP Curl Class works with PHP 5.3, 5.4, 5.5, 5.6, 7.0, 7.1, 7.2, 7.3, and HHVM. ### Quick Start and Examples diff --git a/tests/before_script.sh b/tests/before_script.sh index 5d8db86..8ee4c53 100755 --- a/tests/before_script.sh +++ b/tests/before_script.sh @@ -85,6 +85,8 @@ elif [[ "${TRAVIS_PHP_VERSION}" == "7.1" ]]; then php -S 127.0.0.1:8000 -t tests/PHPCurlClass/ & elif [[ "${TRAVIS_PHP_VERSION}" == "7.2" ]]; then php -S 127.0.0.1:8000 -t tests/PHPCurlClass/ & +elif [[ "${TRAVIS_PHP_VERSION}" == "7.3" ]]; then + php -S 127.0.0.1:8000 -t tests/PHPCurlClass/ & elif [[ "${TRAVIS_PHP_VERSION}" == "hhvm" || "${TRAVIS_PHP_VERSION}" == "hhvm-nightly" ]]; then curl "https://nginx.org/keys/nginx_signing.key" | sudo apt-key add - echo "deb https://nginx.org/packages/mainline/ubuntu/ trusty nginx" | sudo tee -a /etc/apt/sources.list