From 17e0224a55776a34b82c3786629967bada49917e Mon Sep 17 00:00:00 2001 From: fadrian06 Date: Thu, 26 Mar 2026 04:01:41 -0400 Subject: [PATCH] simplify lint and beautify scripts --- composer.json | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index dce7b8e..426f7f3 100644 --- a/composer.json +++ b/composer.json @@ -85,9 +85,13 @@ "rm server.pid", "echo \"Performance Tests Completed.\"" ], - "lint": "phpstan --no-progress --memory-limit=256M", - "beautify": "phpcbf", - "phpcs": "phpcs", + "lint": [ + "phpstan --no-progress --memory-limit=256M", + "phpcs" + ], + "format": [ + "phpcbf" + ], "post-install-cmd": [ "@php -r \"if (!file_exists('phpcs.xml')) copy('phpcs.xml.dist', 'phpcs.xml');\"", "@php -r \"if (!file_exists('phpstan.neon')) copy('phpstan.dist.neon', 'phpstan.neon');\"",