From fb049a70f9eee52e0e561e443bb31c729a31e733 Mon Sep 17 00:00:00 2001 From: paladox Date: Sun, 20 Mar 2016 12:11:18 +0000 Subject: [PATCH] Add phplint to composer and update phpunit to 4.8.24 --- composer.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 7478d18e..ff1e0531 100644 --- a/composer.json +++ b/composer.json @@ -22,10 +22,14 @@ "PHP" : ">=5.3" }, "require-dev": { - "phpunit/phpunit": "~4.8.21" + "jakub-onderka/php-parallel-lint": "0.9.2", + "phpunit/phpunit": "~4.8.24" }, "scripts": { - "test": "phpunit" + "test": [ + "parallel-lint . --exclude vendor", + "phpunit" + ] }, "autoload": { "psr-0": { "Less": "lib/" },