From f3b4e94def96b7b90fb84423480b8ed79c6ac8bb Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Fri, 1 Jan 2021 11:19:57 +0100 Subject: [PATCH] Documented missing composer commands --- composer.json | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 9c82c6ed..b2828ef9 100644 --- a/composer.json +++ b/composer.json @@ -157,6 +157,7 @@ }, "scripts-descriptions": { "ci": "Alias for \"cs\", \"stan\", \"test:ci\" and \"infect:ci\"", + "ci:parallel": "Same as \"ci\", but parallelizing tasks as much as possible", "cs": "Checks coding styles", "cs:fix": "Fixes coding styles, when possible", "stan": "Inspects code with phpstan", @@ -166,14 +167,17 @@ "test:unit:ci": "Runs unit test suites, generating all needed reports and logs for CI envs", "test:db": "Runs database test suites on a SQLite, MySQL, MariaDB, PostgreSQL and MsSQL", "test:db:sqlite": "Runs database test suites on a SQLite database", + "test:db:sqlite:ci": "Runs database test suites on a SQLite database, generating all needed reports and logs for CI envs", "test:db:mysql": "Runs database test suites on a MySQL database", "test:db:maria": "Runs database test suites on a MariaDB database", "test:db:postgres": "Runs database test suites on a PostgreSQL database", + "test:db:ms": "Runs database test suites on a Miscrosoft SQL Server database", "test:api": "Runs API test suites", "test:unit:pretty": "Runs unit test suites and generates an HTML code coverage report", - "infect": "Checks unit tests quality applying mutation testing", - "infect:ci": "Checks unit tests quality applying mutation testing with existing reports and logs", - "infect:test": "Checks unit tests quality applying mutation testing", + "infect:ci": "Checks unit and db tests quality applying mutation testing with existing reports and logs", + "infect:ci:unit": "Checks unit tests quality applying mutation testing with existing reports and logs", + "infect:ci:db": "Checks db tests quality applying mutation testing with existing reports and logs", + "infect:test": "Runs unit and db tests, then checks tests quality applying mutation testing", "clean:dev": "Deletes artifacts which are gitignored and could affect dev env" }, "config": {