From c8f96deac2656ff6d59a8bd3e74daa786f9d07de Mon Sep 17 00:00:00 2001 From: Christian Fuentes Date: Wed, 22 Jun 2016 17:55:17 +0200 Subject: [PATCH 1/2] Update dependencies to phpunit 5 Updating dependencies on composer.json for both phpunit (to 5.* version) and dbunit (to 2.* version) --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index bb9e086..9f80089 100644 --- a/composer.json +++ b/composer.json @@ -21,8 +21,8 @@ "minimum-stability": "dev", "require": { "slim/slim": "2.6.*", - "phpunit/phpunit": "4.*", - "phpunit/dbunit": "1.*", + "phpunit/phpunit": "5.*", + "phpunit/dbunit": "2.*", "illuminate/database": ">=4.0" }, "require-dev": { From b7eb9ea106cd0ce9a489c06503386a89591b503d Mon Sep 17 00:00:00 2001 From: Christian Fuentes Date: Wed, 29 Jun 2016 09:14:02 +0200 Subject: [PATCH 2/2] Remove PHP 5.3, 5.4 and 5.5 For incompatibility with phpunit 5 we remove php version under 5.5 --- .travis.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 75dd936..2090bc6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,12 @@ language: php php: - - 5.3 - - 5.4 - - 5.5 - 5.6 + - 7.0 before_script: - composer install --prefer-source --no-interaction script: - vendor/bin/phpunit --verbose --coverage-text - - vendor/bin/phpcs --standard=PSR2 --extensions=php src tests \ No newline at end of file + - vendor/bin/phpcs --standard=PSR2 --extensions=php src tests