diff --git a/composer.json b/composer.json index 0d00c18..32864f2 100644 --- a/composer.json +++ b/composer.json @@ -42,16 +42,16 @@ } }, "scripts": { - "test-phpstan": "phpstan", - "test-cs": "phpcs --colors src", - "test-cs:fix": "phpcbf --colors src", - "test-unit": "phpunit tests/Unit", - "test-integration": "phpunit tests/Integration", + "test:phpstan": "phpstan", + "test:cs": "phpcs --colors src", + "test:cs:fix": "phpcbf --colors src", + "test:unit": "phpunit tests/Unit", + "test:integration": "phpunit tests/Integration", "test": [ - "@test-phpstan", - "@test-cs", - "@test-unit", - "@test-integration" + "@test:phpstan", + "@test:cs", + "@test:unit", + "@test:integration" ] } }