From fb39eb6563d56902809591b22209ef1151a829ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillaume=20Perr=C3=A9al?= <guillaume.perreal@inrae.fr> Date: Mon, 26 Oct 2020 09:44:21 +0100 Subject: [PATCH] =?UTF-8?q?Utilise=20la=20m=C3=AAme=20version=20de=20PHP?= =?UTF-8?q?=20que=20composer=20pour=20les=20tests.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/composer.json b/composer.json index d44327a..f75ca10 100644 --- a/composer.json +++ b/composer.json @@ -28,15 +28,15 @@ }, "scripts": { "test": [ - "vendor/bin/composer-require-checker -V", - "vendor/bin/php-cs-fixer -V", - "vendor/bin/phpcpd --version", - "vendor/bin/phploc --version", - "vendor/bin/phpmd --version", - "vendor/bin/phpstan -V", - "vendor/bin/parallel-lint -V", - "vendor/bin/phpunit --version", - "vendor/bin/security-checker -V" + "@php vendor/bin/composer-require-checker -V", + "@php vendor/bin/php-cs-fixer -V", + "@php vendor/bin/phpcpd --version", + "@php vendor/bin/phploc --version", + "@php vendor/bin/phpmd --version", + "@php vendor/bin/phpstan -V", + "@php vendor/bin/parallel-lint -V", + "@php vendor/bin/phpunit --version", + "@php vendor/bin/security-checker -V" ] } } -- GitLab