kuick/qa-toolkit

Kuick QA toolkit. It is a meta-package with popular PHP testing tools

v1.0.4 2025-01-22 09:52 UTC

This package is auto-updated.

Last update: 2025-01-22 09:52:45 UTC


README

Latest Version PHP Total Downloads Software License

QA meta-package with popular PHP testing tools

  1. Add this section to your composer.json file
"scripts": {
    "fix:phpcbf": "phpcbf --standard=PSR12 src tests",
    "test:phpstan": "XDEBUG_MODE=off phpstan --level=9 --no-progress --memory-limit=512M analyse src tests",
    "test:phpcs": "phpcs -n --standard=PSR12 ./src ./tests",
    "test:phpmd": "phpmd src text cleancode,codesize,controversial,design,naming,unusedcode",
    "test:phpunit": "XDEBUG_MODE=coverage phpunit",
    "test:all": [
        "@test:phpcs",
        "@test:phpstan",
        "@test:phpmd",
        "@test:phpunit"
    ]
}