From fa645bd7ab213018fbee20e736b6d535774783c9 Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Fri, 19 Jan 2018 10:43:27 -0500 Subject: [PATCH] Update dev dependencies --- composer.json | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/composer.json b/composer.json index 7a08bc6..3f698be 100644 --- a/composer.json +++ b/composer.json @@ -24,18 +24,17 @@ "php": "^7.0" }, "require-dev": { - "consolidation/robo": "1.0.0-RC2", - "humbug/humbug": "1.0.0-alpha2", + "consolidation/robo": "^1.0.0", + "infection/infection": "1.0.0-alpha2", "monolog/monolog": "^1.21", - "nikic/php-parser": "v3.0.0alpha1", - "pdepend/pdepend": "^2.2", - "phploc/phploc": "^3.0", + "pdepend/pdepend": "^2.5", + "phploc/phploc": "^4.0", "phpmd/phpmd": "^2.4", + "phpstan/phpstan": "*", "phpunit/phpunit": "^5.5", "sebastian/phpcpd": "^2.0", "simpletest/simpletest": "^1.1", - "squizlabs/php_codesniffer": "^3.0.0@RC", - "phpdocumentor/phpdocumentor": "2.*" + "squizlabs/php_codesniffer": "^3.0.0" }, "autoload": { "psr-4": { @@ -46,5 +45,9 @@ "scripts": { "coverage": "phpdbg -qrr -- vendor/bin/phpunit -c build", "test": "vendor/bin/phpunit" + }, + "scripts-descriptions": { + "coverage": "Generate test coverage report", + "test": "Run unit tests" } -} \ No newline at end of file +}