From 8ea48ecb40eb70bff9e771b1a1ced72299f3de14 Mon Sep 17 00:00:00 2001 From: Adrien Crivelli Date: Mon, 27 Apr 2020 18:33:44 +0900 Subject: [PATCH] Run code style and coverage with PHP 7.4 --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index a9b8c84a..d357904a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,13 +24,13 @@ jobs: include: - stage: Code style - php: 7.2 + php: 7.4 script: - ./vendor/bin/php-cs-fixer fix --diff --verbose --dry-run - ./vendor/bin/phpcs --report-width=200 samples/ src/ tests/ --ignore=samples/Header.php --standard=PSR2 -n - stage: Coverage - php: 7.2 + php: 7.4 script: - pecl install pcov - composer require pcov/clobber --dev