From cc354551e9c66e3ef5d9e5308621070443d76a4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maur=C3=ADcio=20Meneghini=20Fauth?= Date: Sat, 6 Apr 2019 21:11:56 -0300 Subject: [PATCH] Add a Composer script to run all tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: MaurĂ­cio Meneghini Fauth --- composer.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index cd43d1b98e..4db4765353 100644 --- a/composer.json +++ b/composer.json @@ -97,6 +97,11 @@ "phpcbf": "phpcbf", "phpcs": "phpcs", "phpstan": "phpstan analyse", - "test": "phpunit" + "phpunit": "phpunit", + "test": [ + "@phpcs", + "@phpstan", + "@phpunit" + ] } }