From 0730d6b8d288ca3a95b7d4592e32c0714e5d9e80 Mon Sep 17 00:00:00 2001 From: El RIDO Date: Tue, 5 Jul 2016 17:33:55 +0200 Subject: [PATCH] try to find a phpunit version that is compatible with both PHP 5.5 and HHVM --- .travis.yml | 4 ++-- composer.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index e4999c6..b96b1da 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,7 @@ before_script: - php composer.phar install -n script: - - vendor/bin/phpunit tst + - cd tst && ../vendor/bin/phpunit after_script: - - php vendor/bin/codacycoverage clover tst/log/coverage-clover.xml + - vendor/bin/codacycoverage clover tst/log/coverage-clover.xml diff --git a/composer.json b/composer.json index 88b58b3..fb91fc8 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "require-dev": { - "phpunit/phpunit": "5.4.*", + "phpunit/phpunit": "4.8.*", "codacy/coverage": "dev-master" } }