From e0f74b08b42a83c558596456872f1606135b407f Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Sun, 23 Jun 2024 09:23:05 +0200 Subject: [PATCH] [CLEANUP] Simplify calls to Composer scripts from Composer scripts --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index f4604a4cc..8a55b6458 100644 --- a/composer.json +++ b/composer.json @@ -83,8 +83,8 @@ "ci:tests": [ "@ci:tests:unit" ], - "ci:tests:sof": "\"./vendor/bin/phpunit\" --stop-on-failure --do-not-cache-result", - "ci:tests:unit": "\"./vendor/bin/phpunit\" --do-not-cache-result", + "ci:tests:sof": "phpunit --stop-on-failure --do-not-cache-result", + "ci:tests:unit": "phpunit --do-not-cache-result", "fix:php": [ "@fix:php:fixer", "@fix:php:rector"