From 8ef617931e7f8255dc52c6579ed15e43569c3d15 Mon Sep 17 00:00:00 2001 From: Alexandre D'Eschambeault Date: Tue, 13 Sep 2022 15:06:41 -0400 Subject: [PATCH] build: normalize Composer scripts naming --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 1513626..587807a 100644 --- a/composer.json +++ b/composer.json @@ -38,9 +38,9 @@ }, "scripts": { "lint": "vendor/bin/phpcs -p --standard=PSR12 config src tests", - "lint-fix": "vendor/bin/phpcbf -p --standard=PSR12 config src tests", + "lint:fix": "vendor/bin/phpcbf -p --standard=PSR12 config src tests", "test": "vendor/bin/phpunit", - "test-coverage": "vendor/bin/phpunit --coverage-html coverage" + "test:coverage": "vendor/bin/phpunit --coverage-html coverage" }, "config": { "sort-packages": true