From 08609ce8b6e12a797dec8111ba3b0664e96806dd Mon Sep 17 00:00:00 2001 From: Kentaro Ohkouchi Date: Wed, 12 Dec 2018 10:14:30 +0900 Subject: [PATCH 1/3] Add php7.3 --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 871c9edf81..74b827a55b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,6 +9,7 @@ php: - 7.0 - 7.1 - 7.2 + - 7.3 env: global: @@ -31,6 +32,8 @@ matrix: env: DB=pgsql USER=postgres DBPASS=password DBUSER=postgres COVERAGE=true - php: 7.2 env: DB=pgsql USER=postgres DBPASS=password DBUSER=postgres COVERAGE=true + - php: 7.3 + env: DB=pgsql USER=postgres DBPASS=password DBUSER=postgres COVERAGE=true allow_failures: # Use for coverage report - php: 7.1 From c64b4ba5946c70c9d18cbb84510d250aa1a01869 Mon Sep 17 00:00:00 2001 From: Kentaro Ohkouchi Date: Wed, 12 Dec 2018 10:17:43 +0900 Subject: [PATCH 2/3] Change version --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 74b827a55b..7010fcb1eb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,13 +30,13 @@ matrix: env: DB=pgsql USER=postgres DBPASS=password DBUSER=postgres COVERAGE=true - php: 7.0 env: DB=pgsql USER=postgres DBPASS=password DBUSER=postgres COVERAGE=true - - php: 7.2 + - php: 7.1 env: DB=pgsql USER=postgres DBPASS=password DBUSER=postgres COVERAGE=true - - php: 7.3 + - php: 7.2 env: DB=pgsql USER=postgres DBPASS=password DBUSER=postgres COVERAGE=true allow_failures: # Use for coverage report - - php: 7.1 + - php: 7.3 env: DB=pgsql USER=postgres DBPASS=password DBUSER=postgres COVERAGE=true before_script: From d06f7c59b75646aec7ae775f69f75fc68b2deae0 Mon Sep 17 00:00:00 2001 From: Chihiro Adachi <8196725+chihiro-adachi@users.noreply.github.com> Date: Thu, 10 Jan 2019 08:22:36 +0900 Subject: [PATCH 3/3] =?UTF-8?q?appveyor=E3=81=AEphp=E3=82=927.3=E3=81=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- appveyor.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 74f9cc1e7c..486e61de3e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -49,9 +49,9 @@ install: #- set PATH=%PATH%;C:\MinGW\msys\1.0\bin;C:\MinGW\bin #- mingw-get install mingw-developer-toolkit ## Set PHP. - - cinst php --allow-empty-checksums - - SET PATH=C:\tools\php72\;%PATH% - - cd c:\tools\php72 + - cinst php --allow-empty-checksums --version 7.3 + - SET PATH=C:\tools\php73\;%PATH% + - cd c:\tools\php73 - copy php.ini-production php.ini - echo date.timezone="Asia/Tokyo" >> php.ini - echo extension_dir=ext >> php.ini