Skip to content

Commit

Permalink
Add a QA Composer script
Browse files Browse the repository at this point in the history
This is an aggregate script that runs all of the quality assurance steps
to ensure the code is as good as it can be.
  • Loading branch information
settermjd committed Jan 9, 2025
1 parent b1d921a commit 7a4ac4f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,16 @@
"scripts": {
"cs-check": "vendor/bin/phpcs",
"cs-fix": "vendor/bin/phpcbf",
"qa": [
"@cs-check",
"@test"
],
"test": "vendor/bin/phpunit"
},
"scripts-descriptions": {
"cs-check": "Run coding standards checks.",
"cs-fix": "Automatically fix coding standard issues.",
"qa": "Run all quality assurance checks on the code",
"test": "Run unit tests."
},
"config": {
Expand Down

0 comments on commit 7a4ac4f

Please sign in to comment.