From ec14d36070f08e448041a917a15e5116f91c7144 Mon Sep 17 00:00:00 2001 From: Nasrul Hazim Bin Mohamad Date: Tue, 5 Nov 2024 12:05:18 +0800 Subject: [PATCH] Added script all to run pest, phpstan and pint alltogether --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index b26d1aa..4bf9e65 100644 --- a/composer.json +++ b/composer.json @@ -38,7 +38,8 @@ "analyse": "vendor/bin/phpstan analyse", "test": "vendor/bin/pest", "test-coverage": "vendor/bin/pest --coverage", - "format": "vendor/bin/pint" + "format": "vendor/bin/pint", + "all": "vendor/bin/pint && vendor/bin/phpstan analyse && vendor/bin/pest" }, "config": { "sort-packages": true,