From acfa1919540fe20131c666fda822f7169404d6cf Mon Sep 17 00:00:00 2001 From: Nils Luxton Date: Thu, 3 Mar 2016 17:47:42 +0000 Subject: [PATCH] Added phpunit to composer.json --- .travis.yml | 2 +- composer.json | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 57ab098..bda30cc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,4 +14,4 @@ install: - composer install --prefer-source --no-interaction script: - - phpunit --coverage-text + - vendor/bin/phpunit --coverage-text diff --git a/composer.json b/composer.json index 144f9ff..3460282 100644 --- a/composer.json +++ b/composer.json @@ -16,5 +16,8 @@ "require": { "ext-sockets": "*", "php": ">=5.3" + }, + "require-dev": { + "phpunit/phpunit": "^4.8 || ^5.2" } }