From bb1faba50637408fccbe8b1abb3901cf2f6b028a Mon Sep 17 00:00:00 2001 From: Markus Poerschke Date: Mon, 28 May 2018 12:51:45 +0200 Subject: [PATCH 1/2] Run CI pipeline with PHP 7.2 --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 3ee1346..bd845b9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,7 @@ language: php php: - 7.0 - 7.1 + - 7.2 sudo: false From 072f1890596417a55a5e981939c0e50a9c3019fd Mon Sep 17 00:00:00 2001 From: Markus Poerschke Date: Mon, 28 May 2018 13:58:42 +0200 Subject: [PATCH 2/2] Update PHPUnit to 6.5 and allow newer version of PHPUnit Bridge --- composer.json | 2 +- phpunit | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 477b9d2..80d7cf1 100644 --- a/composer.json +++ b/composer.json @@ -35,7 +35,7 @@ "symfony/dom-crawler": "^3.4|^4.0", "symfony/browser-kit": "^3.4|^4.0", "symfony/cache": "^3.4|^4.0", - "symfony/phpunit-bridge": "^3.4", + "symfony/phpunit-bridge": "^3.4|^4.0", "symfony/stopwatch": "^3.4|^4.0", "sensio/framework-extra-bundle": "^3.0", "doctrine/annotations": "^1.2", diff --git a/phpunit b/phpunit index e26030b..2934e5b 100755 --- a/phpunit +++ b/phpunit @@ -5,5 +5,5 @@ if (!file_exists(__DIR__.'/vendor/symfony/phpunit-bridge/bin/simple-phpunit')) { exit(1); } putenv('SYMFONY_PHPUNIT_DIR='.__DIR__.'/.phpunit'); -putenv('SYMFONY_PHPUNIT_VERSION=6.0'); +putenv('SYMFONY_PHPUNIT_VERSION=6.5'); require __DIR__.'/vendor/symfony/phpunit-bridge/bin/simple-phpunit';