PHPackages                             edgedesign/phpqa - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Testing &amp; Quality](/categories/testing)
4. /
5. edgedesign/phpqa

ActiveLibrary[Testing &amp; Quality](/categories/testing)

edgedesign/phpqa
================

Analyze PHP code with one command.

v1.27.2(5mo ago)5641.0M—0.8%59[2 PRs](https://github.com/EdgedesignCZ/phpqa/pulls)20MITXSLTPHP &gt;=5.4CI passing

Since May 28Pushed 5mo ago17 watchersCompare

[ Source](https://github.com/EdgedesignCZ/phpqa)[ Packagist](https://packagist.org/packages/edgedesign/phpqa)[ RSS](/packages/edgedesign-phpqa/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (4)Versions (51)Used By (20)

PHPQA
=====

[](#phpqa)

Analyze PHP code with one command.

[![License](https://camo.githubusercontent.com/6c10cb953ca102c7e003cea049041d6ecc36defbbf6483471a5aae3440c95803/68747470733a2f2f706f7365722e707567782e6f72672f6564676564657369676e2f70687071612f6c6963656e7365)](https://packagist.org/packages/edgedesign/phpqa)[![Latest Stable Version](https://camo.githubusercontent.com/c2a846e8baec3067406233580cf670d855e184061b8bfcd61911ff2b47e7f3e0/68747470733a2f2f706f7365722e707567782e6f72672f6564676564657369676e2f70687071612f762f737461626c65)](/CHANGELOG.md)[![Total Downloads](https://camo.githubusercontent.com/80894dc8f233d9c9deddba4cc00a879c5c65014af81fd10c96caad5a0adb59e5/68747470733a2f2f706f7365722e707567782e6f72672f6564676564657369676e2f70687071612f646f776e6c6f616473)](https://packagist.org/packages/edgedesign/phpqa)[![Build Status](https://github.com/EdgedesignCZ/phpqa/workflows/PHPQA%20CI/badge.svg?branch=master)](https://github.com/EdgedesignCZ/phpqa/actions)

Requirements
------------

[](#requirements)

- PHP &gt;= 5.4.0
- `xsl` extension for [HTML reports](#html-reports)

Why?
----

[](#why)

Every analyzer has different arguments and options in different formats *(no surprise in PHP world :)*. If you ever tried to get ignoring directories to work then you know what I mean. On the other hand CLI tools are cool because you can analyze any directory or file. Unfortunately [Jenkins](http://jenkins-php.org/automation.html), [Travis](https://github.com/libis/plugin-Mailer/blob/095cc1154fd6d7beb3be4425329868ecfa2043d9/.travis.yml), [Scrutiziner](https://github.com/antonbabenko/imagepush2/blob/db88b1c65a34250ba98e01d584d72421aedfaeac/.scrutinizer.yml)needs special configuration file. What if you want to analyze every bundle in your Symfony app? Will you create e.g. Jenkins project/task for each bundle?

- I want to analyze selected directory without complex configuration and creating extra files/tasks
- I don't care about format of [ignored directories](https://github.com/EdgedesignCZ/phpqa/blob/master/tests/IgnoredPathsTest.php) in phploc, phpmd, ...
- I don't want to update all projects when QA tool is updated or if I've found cool tool like [PHPMetrics](https://github.com/Halleck45/PhpMetrics)
- I don't want to analyze XML files → tool should be able to build [html reports](#html-reports)
- I want fast execution time → tools should run in parallel ([thanks Robo](http://robo.li/tasks/Base/#parallelexec))

Available [tools](https://github.com/ziadoz/awesome-php#code-analysis)
----------------------------------------------------------------------

[](#available-tools)

**Since version \[1.27\] no tools are preinstalled if you run `composer require`!**

You have to install relevant composer packages if you want to use them, or define `binary` path in `.phpqa.yml`, or use official docker image with preinstalled tools.

ToolPHPSupported sinceDescription[phploc](https://github.com/sebastianbergmann/phploc)`>= 5.4``1.0`Measure the size of a PHP project[phpcpd](https://github.com/sebastianbergmann/phpcpd)`>= 5.4``1.0`Copy/Paste Detector (CPD) for PHP code[phpcs](https://github.com/squizlabs/PHP_CodeSniffer)`>= 5.4``1.0`Detect violations of a coding standard[pdepend](https://github.com/pdepend/pdepend)`>= 5.4``1.0`PHP adaptation of JDepend[phpmd](https://github.com/phpmd/phpmd)`>= 5.4``1.0`Scan PHP project for messy code[phpmetrics](https://github.com/Halleck45/PhpMetrics)`>= 5.4``1.0`Static analysis tool for PHP[security-checker](https://github.com/enlightn/security-checker)`>= 5.6``1.24`Check composer.lock for known security issues[php-cs-fixer](http://cs.sensiolabs.org/)[`>= 5.3`](https://github.com/EdgedesignCZ/phpqa/pull/66#discussion_r115206573)`1.12`Automatically detect and fix PHP coding standards issues[phpunit](https://github.com/phpunit/phpunit)`>= 5.3``1.13`The PHP Unit Testing framework[phpstan](https://github.com/phpstan/phpstan)`>= 7.0``1.9`Discover bugs in your code without running it[psalm](https://github.com/vimeo/psalm)`>= 5.6``1.14`A static analysis tool for finding errors in PHP applications[parallel-lint](https://github.com/JakubOnderka/PHP-Parallel-Lint)`>= 5.4``1.9`Check syntax of PHP files[deptrac](https://github.com/deptrac/deptrac)`>= 7.2``1.25`Enforce rules for dependencies between software layers[MacFJA/phpqa-extensions](https://github.com/MacFJA/phpqa-extensions)--PHP Assumptions, Magic Number Detector, ...*Tip*: use [`bin/suggested-tools.sh install`](/bin/suggested-tools.sh) for installing the tools.

Install
-------

[](#install)

### Clone + composer

[](#clone--composer)

```
# install phpqa
git clone https://github.com/EdgedesignCZ/phpqa.git && cd phpqa && composer install --no-dev

# make phpqa globally accessible
## you can symlink binary
sudo ln -s /path-to-phpqa-repository/phpqa /usr/bin/phpqa
## or add this directory to your PATH in your ~/.bash_profile (or ~/.bashrc)
export PATH=~/path-to-phpqa-repository-from-pwd:$PATH
```

### Composer

[](#composer)

```
# global installation
composer global require edgedesign/phpqa --update-no-dev
# Make sure you have ~/.composer/vendor/bin/ in your PATH.

# local installation
composer require edgedesign/phpqa --dev
```

Of course you can add dependency to `require-dev` section in your `composer.json`. But I wouldn't recommend it. In my experience *one* QA tool which analyzes *N* projects is better than *N* projects with *N* analyzers. It's up to you how many repositories you want to update when new version is released.

##### Symfony3 components

[](#symfony3-components)

Symfony3 is supported since [version 1.7](/CHANGELOG.md#v170). Install at least version `~3.0` of `sebastian/phpcpd`, otherwise you'll get error [`The helper "progress" is not defined.`](https://github.com/EdgedesignCZ/phpqa/issues/19)

```
{
    "require-dev": {
        "edgedesign/phpqa": ">=1.7",
        "sebastian/phpcpd": "~3.0"
    }
}
```

##### Fake global installation in local project

[](#fake-global-installation-in-local-project)

Do you have problems with dependencies and you can't install phpqa globally? Install phpqa in [subdirectory](#circleci---artifacts--global-installation).

```
#!/bin/sh

if [ ! -f qa/phpqa ];
then
    echo "installing phpqa"
    (git clone https://github.com/EdgedesignCZ/phpqa.git ./qa  && cd qa && composer install --no-dev)
fi

qa/phpqa
```

### Docker

[](#docker)

Official docker image repository is . Images can be used at [Gitlab CI](#gitlabci---docker-installation--composer-cache--artifacts).

```
docker run --rm -it ghcr.io/edgedesigncz/phpqa:v1.27.2-php7.2 phpqa tools
# using a tool without phpqa
docker run --rm -it ghcr.io/edgedesigncz/phpqa:v1.27.2-php7.2 phploc -v
```

ImagePHP versionTools versions`ghcr.io/edgedesigncz/phpqa:v1.27.2-php7.2`7.2Versions that supports symfony2 components. Not [latest versions](https://github.com/EdgedesignCZ/phpqa/issues/159#issuecomment-452794397).`ghcr.io/edgedesigncz/phpqa:v1.27.2-php8.1`8.1`ghcr.io/edgedesigncz/phpqa:v1.27.2-php8.2`8.2`ghcr.io/edgedesigncz/phpqa:v1.27.2-php8.3`8.3`ghcr.io/edgedesigncz/phpqa:v1.27.2-php8.4`8.4`ghcr.io/edgedesigncz/phpqa:v1.27.2-php8.5`8.5Generally, latest versions available at the moment. If you need different versions, then [build custom docker image](https://github.com/EdgedesignCZ/phpqa/issues/210)Beware that images as lean as possible. That can be a problem for running PHPUnit tests. In that case, you might need different PHP version, miss PHP extensions for database etc. You can [install phpqa](https://gitlab.com/costlocker/integrations/blob/213aab7/.ci/get-phpqa-binary#L40) in another [php image](https://gitlab.com/costlocker/integrations/blob/213aab7/.ci/.gitlab-ci.yml#L28)Or [build custom docker image](https://github.com/EdgedesignCZ/phpqa/issues/168#issuecomment-489180974).

```
docker run --rm -it ghcr.io/edgedesigncz/phpqa:v1.27.2-php7.2 sh -c "php --version && composer --version && composer outdated --direct --all && phpqa tools"
docker run --rm -it ghcr.io/edgedesigncz/phpqa:v1.27.2-php8.4 sh -c "php --version && composer --version && composer outdated --direct --all && phpqa tools"
```

There are also available images [eko3alpha/docker-phpqa](https://hub.docker.com/r/eko3alpha/docker-phpqa/) and [sparkfabrik/docker-phpqa](https://hub.docker.com/r/sparkfabrik/docker-phpqa/). `phpqa` is used as [an entrypoint](https://docs.docker.com/engine/reference/builder/#entrypoint) (*I haven't been able to use these images at Gitlab CI + [Windows probably needs different environment variable](https://github.com/EdgedesignCZ/phpqa/issues/199#issuecomment-590258608)*).

```
docker run --rm -u $UID -v $PWD:/app eko3alpha/docker-phpqa --report --ignoredDirs vendor,build,migrations,test
```

Analyze
-------

[](#analyze)

CommandDescription`phpqa --help`Show help - available options, tools, default values, ...`phpqa --analyzedDirs ./ --buildDir ./build`Analyze current directory and save output to build directory`phpqa --analyzedDirs src,tests`Analyze source and test directory ([phpmetrics analyzes only `src`](#project-with-multiple-directories-src-tests-))`phpqa --analyzedDir ./`Deprecated in **v1.8** in favor of `--analyzedDirs``phpqa --ignoredDirs build,vendor`Ignore directories`phpqa --ignoredFiles RoboFile.php`Ignore files`phpqa --tools phploc,phpcs`Run only selected tools`phpqa --tools phpmd:1,phpcs:0,phpcpd:0`Check number of errors and [exit code](#exit-code). **New in v1.6**`phpqa --verbose`Show output from executed tools`phpqa --quiet`Show no output at all`phpqa --output cli`[CLI output](#output-modes) instead of creating files in `--buildDir``phpqa --execution no-parallel`Don't use parallelism if `--execution != parallel``phpqa --config ./my-config`Use [custom configuration](#advanced-configuration---phpqayml)`phpqa --report`Build [html reports](#html-reports)`phpqa --report offline`Build html reports with [bundled assets](https://github.com/EdgedesignCZ/phpqa/issues/95). **New in v1.16**`phpqa tools`Show versions of available tools*Tip:* CLI options can be defined in [.phpqa.yml](#advanced-configuration---phpqayml)

Output modes
------------

[](#output-modes)

Tool`--output file` (default) - generated files`--output cli`phploc[phploc.xml](https://edgedesigncz.github.io/phpqa/report/phploc.xml)[✓](https://github.com/sebastianbergmann/phploc#analyse-a-directory-and-print-the-result)phpcpd[phpcpd.xml](https://edgedesigncz.github.io/phpqa/report/phpcpd.xml)[✓](https://github.com/sebastianbergmann/phpcpd#usage-example)phpcs[checkstyle.xml](https://edgedesigncz.github.io/phpqa/report/checkstyle.xml)[full report](https://github.com/squizlabs/PHP_CodeSniffer/wiki/Reporting#printing-full-and-summary-reports)pdepend[pdepend-jdepend.xml](https://edgedesigncz.github.io/phpqa/report/pdepend-jdepend.xml), [pdepend-summary.xml](https://edgedesigncz.github.io/phpqa/report/pdepend-summary.xml), [pdepend-dependencies.xml](https://edgedesigncz.github.io/phpqa/report/pdepend-dependencies.xml), [pdepend-jdepend.svg](https://edgedesigncz.github.io/phpqa/report/pdepend-jdepend.svg), [pdepend-pyramid.svg](https://edgedesigncz.github.io/phpqa/report/pdepend-pyramid.svg)✗phpmd[phpmd.xml](https://edgedesigncz.github.io/phpqa/report/phpmd.xml)[✓](https://github.com/phpmd/phpmd/blob/master/src/main/php/PHPMD/Renderer/TextRenderer.php#L47)phpmetrics[phpmetrics.html (v1)](https://edgedesigncz.github.io/phpqa/report/phpmetrics.html), [phpmetrics/index.html (v2)](https://edgedesigncz.github.io/phpqa/report/phpmetrics/), [phpmetrics.xml](https://edgedesigncz.github.io/phpqa/report/phpmetrics.xml)[✓](https://github.com/phpmetrics/PhpMetrics#usage)php-cs-fixer[php-cs-fixer.html](https://edgedesigncz.github.io/phpqa/report/php-cs-fixer.html)[✓](http://cs.sensiolabs.org/#usage "txt output format")parallel-lint[parallel-lint.html](https://edgedesigncz.github.io/phpqa/report/parallel-lint.html)[✓](https://github.com/JakubOnderka/PHP-Parallel-Lint#example-output)phpstan[phpstan.html](https://edgedesigncz.github.io/phpqa/report/phpstan.html), [phpstan-phpqa.neon](https://edgedesigncz.github.io/phpqa/report/phpstan-phpqa.neon)[✓](https://edgedesigncz.github.io/phpqa/report/phpstan.html), [phpstan-phpqa.neon](https://edgedesigncz.github.io/phpqa/report/phpstan-phpqa.neon "Generated configuration is saved in current working directory")psalm[psalm.html](https://edgedesigncz.github.io/phpqa/report/psalm.html), [psalm.xml](https://edgedesigncz.github.io/phpqa/report/psalm.xml), [psalm-phpqa.xml](https://edgedesigncz.github.io/phpqa/report/psalm-phpqa.xml)[✓](https://edgedesigncz.github.io/phpqa/report/psalm.xml), [psalm-phpqa.xml](https://edgedesigncz.github.io/phpqa/report/psalm-phpqa.xml "Generated configuration is saved in current working directory")deptrac[deptrac.html](https://edgedesigncz.github.io/phpqa/report/deptrac.html)✗Exit code
---------

[](#exit-code)

`phpqa` can return non-zero exit code **since version 1.6**. It's optional feature that is by default turned off. You have to define number of allowed errors for *phpcpd, phpcs, phpmd* in `--tools`.

[mode](#output-modes)Supported versionWhat is analyzed?`--output file`&gt;= 1.6Number of errors in XML files, or exit code for tools without XML`--output cli`&gt;= 1.9Exit codeLet's say your [Travis CI](https://docs.travis-ci.com/user/customizing-the-build/#Customizing-the-Build-Step)or [Circle CI](https://circleci.com/docs/manually/#overview) build should fail when new error is introduced. Define number of allowed errors for each tools and watch the build:

```
phpqa --report --tools phpcs:0,phpmd:0,phpcpd:0,parallel-lint:0,phpstan:0,phpmetrics,phploc,pdepend
```

Number of allowed errors can be also defined in [.phpqa.yml](#advanced-configuration---phpqayml).

```
phpqa:
    # can be overriden by CLI: phpqa --tools phpcs:1
    tools:
        - phpcs:0
```

**File mode**

[![screenshot from 2016-07-23 13 53 34](https://cloud.githubusercontent.com/assets/7994022/17077767/e18bcb2a-50dc-11e6-86bc-0dfc8e22d98c.png)](https://cloud.githubusercontent.com/assets/7994022/17077767/e18bcb2a-50dc-11e6-86bc-0dfc8e22d98c.png)

*Tip*: override [`phpcs.ignoreWarnings`](#advanced-configuration---phpqayml) if you want to count just errors without phpcs warnings.

**CLI mode**

[![screenshot from 2016-12-21 14 31 27](https://cloud.githubusercontent.com/assets/7994022/21391059/33730d76-c78a-11e6-913a-84b3c7836c28.png)](https://cloud.githubusercontent.com/assets/7994022/21391059/33730d76-c78a-11e6-913a-84b3c7836c28.png)

*Tip*: use [`echo $?`](https://gist.github.com/zdenekdrahos/5368eea304ed3fa6070bc77772779738) for displaying exit code.

Advanced configuration - `.phpqa.yml`
-------------------------------------

[](#advanced-configuration---phpqayml)

Provide [CLI options](#analyze) from [`.phpqa.yml`](/.phpqa.yml):

CLI option.phpqa.yml`phpqa --analyzedDirs ./``phpqa.analyzedDirs: ./``phpqa --buildDir ./build	``phpqa.buildDir: ./build``phpqa --ignoredDirs build,vendor``phpqa.ignoredDirs: build,vendor``phpqa --ignoredFiles RoboFile.php``phpqa.ignoredFiles: RoboFile.php``phpqa --tools phploc,phpcs:0``phpqa.tools: phploc,phpcs:0``phpqa --report``phpqa.report: true``phpqa --execution no-parallel``phpqa.execution: no-parallel``phpqa --output cli	``phpqa.output: cli``phpqa --verbose``phpqa.verbose: true`### Files

[](#files)

`.phpqa.yml` is automatically detected in current working directory, but you can specify directory via option:

```
# use .phpqa.yml from defined directory
phpqa --config path-to-directory-with-config
```

You don't have to specify full configuration. Missing or empty values are replaced with default values from our [`.phpqa.yml`](/.phpqa.yml). Example of minimal config that defines only standard for CodeSniffer:

```
phpcs:
    standard: Zend
```

*Tip*: use [PHP Coding Standard Generator](http://edorian.github.io/php-coding-standard-generator/)for generating phpcs/phpmd standards.

You can specify multiple configurations directory (separated by `,`). They are loaded in the order they are defined. This can be useful if you have a common configuration file that you want to use across multiple project but you still want to have per project configuration. Also, path inside configuration file are relative to where the configuration file is, so if you have a package that bundle a custom tool, the `.phpqa.yml` in the package can refers files within it.

```
phpqa --config ~/phpqa/,my-config/,$(pwd)
```

### Custom binary

[](#custom-binary)

Every tool can define custom binary. Use phar or global tool, if you have troubles with dependencies, e.g.:

- can't install something because of symfony components or php version
- phpstan does not work, if phpmetrics v1 is installed in composer *(`Hoa main file (Core.php) must be included once.`)* -&gt; use phar for phpmetrics

Generally, composer installation is preferred because of detecting version. Phar works too, but it might be tricky. If a tool has composer package with phar *(e.g. [vimeo/phar](https://packagist.org/packages/psalm/phar))*, use it instead of custom binary:

```
psalm:
    binary: /usr/local/bin/psalm.phar
```

Possibilities are infinite. You can [define new tool](https://github.com/EdgedesignCZ/phpqa/blob/master/.phpqa.yml#L120)and run it. For example I like `exploring codebase` in phpmetrics v1 and composer info in v2. Install phpmetrics v2 in composer and use phar for v1 to avoid phpstan conflicts:

```
$ cat tests/.ci/.phpqa.yml
phpmetricsV1:
    binary: /usr/local/bin/phpmetrics.phar
tool:
    phpmetricsV1: Edge\QA\Tools\Analyzer\PhpMetrics

$ phpqa --config tests/.ci/ --tools phpmetricsV1,phpmetrics
```

### Override tools' settings

[](#override-tools-settings)

ToolSettingsDefault ValueYour value[phpqa.extensions](https://github.com/EdgedesignCZ/phpqa/blob/master/.phpqa.yml#L49)PHP File extensionsphpName of php file to parse, you can specify it like a string `php,inc,modules` or like a yaml array.[phpcs.standard](https://pear.php.net/manual/en/package.php.php-codesniffer.usage.php#package.php.php-codesniffer.usage.coding-standard)Coding standardPSR2Name of existing standard (`PEAR`, `PHPCS`, `PSR1`, `PSR2`, `Squiz`, `Zend`), or path to your coding standard. To specify [multiple standards](https://github.com/squizlabs/PHP_CodeSniffer/wiki/Usage#specifying-a-coding-standard), you can use an array[phpcs.ignoreWarnings](https://github.com/EdgedesignCZ/phpqa/issues/53)If number of allowed errors is compared with warnings+errors, or just errors from `checkstyle.xml``false`Boolean value[phpcs.reports](https://github.com/squizlabs/PHP_CodeSniffer/wiki/Reporting)Report types[`full`](https://github.com/squizlabs/PHP_CodeSniffer/wiki/Reporting#printing-full-and-summary-reports) report in [cli mode](#output-modes), [`checkstyle`](https://github.com/squizlabs/PHP_CodeSniffer/wiki/Reporting#printing-a-checkstyle-report) in [file mode](#output-modes)Predefined [report types](https://github.com/squizlabs/PHP_CodeSniffer/wiki/Reporting) or [custom reports](https://github.com/wikidi/codesniffer#examples)[php-cs-fixer.rules](http://cs.sensiolabs.org/#usage)Coding standard rules`@PSR2`String value[php-cs-fixer.allowRiskyRules](http://cs.sensiolabs.org/#usage)Whether risky rules may run`false`Boolean value[php-cs-fixer.config](http://cs.sensiolabs.org/#usage)Load configuration from [file](https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/master/.php_cs.dist)`null`Path to `.phpcs` file[php-cs-fixer.isDryRun](http://cs.sensiolabs.org/#usage)If code is just analyzed or fixers are applied`true`Boolean value[phpmetrics.config](https://github.com/EdgedesignCZ/phpqa/issues/74)Configuration for phpmetrics v1`null`Path to `.phpmetrics.yml` file[phpmetrics.git](https://github.com/EdgedesignCZ/phpqa/pull/122)phpmetrics v2 analyses based on Git History`null`Boolean value or path to git binary[phpmetrics.junit](https://github.com/EdgedesignCZ/phpqa/pull/125)phpmetrics v2 evaluates metrics according to JUnit logs`null`Path to JUnit xml[phpmetrics.composer](https://github.com/EdgedesignCZ/phpqa/pull/123)phpmetrics v2 analyzes composer dependencies`null`Path to composer.json when the file is not included in `analyzedDirs`[pdepend.coverageReport](https://github.com/EdgedesignCZ/phpqa/pull/124)Load Clover style CodeCoverage report`null`Path to report produced by PHPUnit's `--coverage-clover` option[phpmd.standard](http://phpmd.org/documentation/creating-a-ruleset.html)Ruleset[Edgedesign's standard](/app/phpmd.xml)Path to ruleset. To specify [multiple rule sets](https://phpmd.org/documentation/index.html#using-multiple-rule-sets), you can use an array[phpmd.ignoreParsingErrors](https://github.com/EdgedesignCZ/phpqa/issues/230)If parsing errors affect exit code, or just violations`true`Boolean value[phpcpd](https://github.com/sebastianbergmann/phpcpd/blob/de9056615da6c1230f3294384055fa7d722c38fa/src/CLI/Command.php#L136)Minimum number of lines/tokens for copy-paste detection5 lines, 70 tokens[phpstan](https://github.com/phpstan/phpstan#configuration)Level, error format, config file, memory limitLevel 0, checkstyle, `%currentWorkingDirectory%/phpstan.neon`, memoryLimit: nullTake a look at [phpqa config in tests/.ci](/tests/.ci/)[phpunit.binary](https://github.com/EdgedesignCZ/phpqa/blob/4947416/.phpqa.yml#L40)Phpunit binaryphpqa's phpunitPath to phpunit executable in your project, typically [`vendor/bin/phpunit`](https://gitlab.com/costlocker/integrations/blob/master/basecamp/backend/.phpqa.yml#L2)[phpunit.config](https://phpunit.de/manual/current/en/organizing-tests.html#organizing-tests.xml-configuration)PHPUnit configuration, `analyzedDirs` and `ignoredDirs` are not used, you have to specify test suites in XML file`null`Path to `phpunit.xml` file[phpunit.reports](https://phpunit.de/manual/current/en/textui.html)Report typesno reportList of reports and formats, corresponds with CLI option, e.g. `--log-junit` is `log: [junit]` in `.phpqa.yml`[psalm.config](https://psalm.dev/docs/running_psalm/configuration/)Psalm configuration, `analyzedDirs` and `ignoredDirs` are appended to `projectFiles`[Predefined config](/app/psalm.xml)Path to `psalm.xml` file[psalm.deadCode](https://psalm.dev/docs/running_psalm/issues/UnusedClass/)Enable or not `--find-dead-code` option of psalm`false`Boolean value[psalm.threads](https://psalm.dev/docs/running_psalm/command_line_usage/#running-psalm-faster)Set the number of process to use in parallel (option `--threads` of psalm) (Only if `--execution == parallel` for phpqa)`1`Number (&gt;= 1)[psalm.showInfo](https://psalm.dev/docs/running_psalm/configuration/#reportinfo)Display or not information (non-error) messages (option `--show-info=` of psalm)`true`Boolean value[psalm.memoryLimit](https://github.com/vimeo/psalm/issues/842)Custom memory limit, ignore unless you are getting `Fatal error: Allowed memory size of ... bytes exhausted``null`String value, e.g. `'1024M'`, `'1G'`[deptrac.depfile](https://deptrac.github.io/deptrac/#configuration)Complete [deptrac config](https://deptrac.github.io/deptrac/configuration/) *(phpqa won't update source and excluded files)*`null`Path to `deptrac.yml` file[deptrac.reportUncovered](https://deptrac.github.io/deptrac/concepts/#uncovered-dependencies)Option to let you know about any uncovered dependencies`true`Boolean value[security-checker.composerLock](https://github.com/EdgedesignCZ/phpqa/blob/bdd49e3/.phpqa.yml#L94)Use it if composer.lock is not in current working directory or analyzed directory`null`Path to `composer.lock` fileHTML reports
------------

[](#html-reports)

If you don't have Jenkins or other CI server, then you can use HTML reports. HTML files are built when you add option `--report`. Take a look at [report from phpqa](https://edgedesigncz.github.io/phpqa/report/phpqa.html).

```
# build html reports
phpqa --report
```

### Custom templates

[](#custom-templates)

Define custom templates if you don't like [default templates](/app/report). You have to define path to `xsl` files in your [`.phpqa.yml`](#advanced-configuration---phpqayml):

```
# use different template for PHPMD, use default for other tools
report:
    phpmd: my-templates/phpmd.xsl
```

Be aware that all **paths are relative to `.phpqa.yml`**. Don't copy-paste section `report`if you don't have custom templates!

### Requirements

[](#requirements-1)

[`xsl` extension](http://php.net/manual/en/class.xsltprocessor.php)must be installed and enabled for exporting HTML reports. Otherwise you'll get error `PHP Fatal error:  Class 'XSLTProcessor' not found`.

```
# install xsl extension in Ubuntu
sudo apt-get update
sudo apt-get install php5-xsl
sudo service apache2 restart
```

Continuous integration
----------------------

[](#continuous-integration)

We use [Jenkins-CI](http://jenkins-php.org/) in Edgedesign. Below you can find examples of [Phing](https://www.phing.info/), [Robo](http://robo.li/) and `bash` tasks.

### Project with one directory

[](#project-with-one-directory)

Typically in Symfony project you have project with `src` directory with all the code and tests. So you don't need ignore vendors, web directory etc.

**Phing - `build.xml`**

```

```

**Robo - `RoboFile.php`**

```
public function ciPhpqa()
{
    $this->taskExec('phpqa')
        ->option('analyzedDirs', './src')
        ->option('buildDir', './build/logs')
        ->option('report')
        ->run();
}
```

### Project with multiple directories (src, tests, ...)

[](#project-with-multiple-directories-src-tests-)

When you analyze root directory of your project don't forget to ignore vendors and other non-code directories. Otherwise the analysis could take a very long time.

**Since version [1.8](CHANGELOG.md#v180) phpqa supports analyzing multiple directories.**Except phpmetrics that analyzes only first directory. Analyze root directory and ignore other directories if you rely on phpmetrics report.

**Phing - `build.xml`**

```

```

**Robo - `RoboFile.php`**

```
public function ciPhpqa()
{
    $this->taskExec('phpqa')
        ->option('verbose')
        ->option('report')
        ->option('analyzedDirs', './')
        ->option('buildDir', './build')
        ->option('ignoredDirs', 'build,bin,vendor')
        ->option('ignoredFiles', 'RoboFile.php,error-handling.php')
        ->run();
}
```

**Bash**

```
phpqa --verbose --report --analyzedDirs ./ --buildDir ./var/CI --ignoredDirs=bin,log,temp,var,vendor,www
```

### Circle.ci - artifacts + global installation

[](#circleci---artifacts--global-installation)

```
machine:
    php:
        version: 7.0.4

dependencies:
    cache_directories:
        - ~/.composer/cache
    post:
        - 'git clone https://github.com/EdgedesignCZ/phpqa.git ./qa && cd qa && composer install --no-dev'

test:
    override:
        - vendor/bin/phpunit --testdox-html ./var/tests/testdox.html --testdox-text ./var/tests/testdox.txt --log-junit $CIRCLE_TEST_REPORTS/phpunit/junit.xml
        - qa/phpqa --report --verbose --buildDir var/QA --ignoredDirs vendor --tools=phpcs:0,phpmd:0,phpcpd:0,phploc,pdepend,phpmetrics
    post:
        - cp -r ./var/QA $CIRCLE_ARTIFACTS
        - cp -r ./var/tests $CIRCLE_ARTIFACTS
```

### Gitlab.ci - docker installation + composer cache + artifacts

[](#gitlabci---docker-installation--composer-cache--artifacts)

```
stages:
  - test

test:
  stage: test
  image: ghcr.io/edgedesigncz/phpqa:v1.27.2-php7.2
  variables:
    BACKEND_QA: "*/backend/var/QA"
    BACKEND_CACHE: $CI_PROJECT_DIR/.composercache
  cache:
    paths:
    - $BACKEND_CACHE
  script:
    - 'export COMPOSER_CACHE_DIR=$BACKEND_CACHE'
    - 'composer install --ignore-platform-reqs --no-progress --no-suggest'
    - 'phpqa --report --tools phpcs:0,phpunit:0 --buildDir var/QA --analyzedDirs ./ --ignoredDirs var,vendor'
  artifacts:
    when: always
    paths:
    - $BACKEND_QA
```

### Github actions - docker installation + composer cache + artifacts

[](#github-actions---docker-installation--composer-cache--artifacts)

```
name: QA

on: [push]

jobs:
  qa:
    container: ghcr.io/edgedesigncz/phpqa:v1.27.2-php8.4
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2

      # composer is not necessary, if you are not running phpunit/psalm/phpstan
      - name: Cache composer
        uses: actions/cache@v2
        with:
          path: |
            ~/.composer/cache
            vendor
          key: php-composer-${{ hashFiles('**/composer.lock') }}
          restore-keys: "php-composer-74"
      - name: Install dependencies
        run: |
          composer install --no-interaction --no-progress --ignore-platform-reqs;

      - name: phpqa
        run: phpqa --report --tools phpunit:0,phpcs:0,phpmd:0,psalm:0,phpstan:0 --buildDir build --analyzedDirs ./ --ignoredDirs build,vendor

      - name: Upload QA files
        uses: actions/upload-artifact@v2
        with:
          name: phpqa
          path: build
```

Contributing
------------

[](#contributing)

Contributions from others would be very much appreciated! Send [pull request](https://github.com/EdgedesignCZ/phpqa/pulls)/[issue](https://github.com/EdgedesignCZ/phpqa/issues). Thanks!

License
-------

[](#license)

Copyright (c) 2015 - present Edgedesign.cz. MIT Licensed, see [LICENSE](/LICENSE) for details.

###  Health Score

63

—

FairBetter than 99% of packages

Maintenance70

Regular maintenance activity

Popularity60

Solid adoption and visibility

Community40

Growing community involvement

Maturity71

Established project with proven stability

 Bus Factor1

Top contributor holds 94.9% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~78 days

Recently: every ~323 days

Total

50

Last Release

177d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6468a80f26006dc63218995f4d7b3c0ce335769c276f373f9522ca94a9ad7c43?d=identicon)[edgedesigncz](/maintainers/edgedesigncz)

![](https://www.gravatar.com/avatar/208697c4ad10fc7fe254c2da28e26a26135d84eb21ccc298dedbc79e05be783b?d=identicon)[zdenekdrahos](/maintainers/zdenekdrahos)

---

Top Contributors

[![zdenekdrahos](https://avatars.githubusercontent.com/u/7994022?v=4)](https://github.com/zdenekdrahos "zdenekdrahos (608 commits)")[![MacFJA](https://avatars.githubusercontent.com/u/1475671?v=4)](https://github.com/MacFJA "MacFJA (11 commits)")[![photodude](https://avatars.githubusercontent.com/u/10253980?v=4)](https://github.com/photodude "photodude (7 commits)")[![ndench](https://avatars.githubusercontent.com/u/2062388?v=4)](https://github.com/ndench "ndench (3 commits)")[![sojki](https://avatars.githubusercontent.com/u/6833050?v=4)](https://github.com/sojki "sojki (2 commits)")[![cbastienbaron](https://avatars.githubusercontent.com/u/1092759?v=4)](https://github.com/cbastienbaron "cbastienbaron (1 commits)")[![paolomainardi](https://avatars.githubusercontent.com/u/8747?v=4)](https://github.com/paolomainardi "paolomainardi (1 commits)")[![paras-malhotra](https://avatars.githubusercontent.com/u/16099046?v=4)](https://github.com/paras-malhotra "paras-malhotra (1 commits)")[![thinkspill](https://avatars.githubusercontent.com/u/822133?v=4)](https://github.com/thinkspill "thinkspill (1 commits)")[![tomtomau](https://avatars.githubusercontent.com/u/2062363?v=4)](https://github.com/tomtomau "tomtomau (1 commits)")[![ondrejmirtes](https://avatars.githubusercontent.com/u/104888?v=4)](https://github.com/ondrejmirtes "ondrejmirtes (1 commits)")[![garak](https://avatars.githubusercontent.com/u/179866?v=4)](https://github.com/garak "garak (1 commits)")[![gliautard](https://avatars.githubusercontent.com/u/45846120?v=4)](https://github.com/gliautard "gliautard (1 commits)")[![guvra](https://avatars.githubusercontent.com/u/3967259?v=4)](https://github.com/guvra "guvra (1 commits)")[![omarlopesino](https://avatars.githubusercontent.com/u/3202817?v=4)](https://github.com/omarlopesino "omarlopesino (1 commits)")

---

Tags

static analysisqacode analysis

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/edgedesign-phpqa/health.svg)

```
[![Health](https://phpackages.com/badges/edgedesign-phpqa/health.svg)](https://phpackages.com/packages/edgedesign-phpqa)
```

###  Alternatives

[larastan/larastan

Larastan - Discover bugs in your code without running it. A phpstan/phpstan extension for Laravel

6.4k43.5M5.2k](/packages/larastan-larastan)[phpstan/phpstan

PHPStan - PHP Static Analysis Tool

13.9k341.8M29.6k](/packages/phpstan-phpstan)[vimeo/psalm

A static analysis tool for finding errors in PHP applications

5.8k77.5M6.7k](/packages/vimeo-psalm)[wp-coding-standards/wpcs

PHP\_CodeSniffer rules (sniffs) to enforce WordPress coding conventions

2.7k42.5M1.6k](/packages/wp-coding-standards-wpcs)[symplify/easy-coding-standard

Use Coding Standard with 0-knowledge of PHP-CS-Fixer and PHP\_CodeSniffer.

1.6k34.6M1.5k](/packages/symplify-easy-coding-standard)[dealerdirect/phpcodesniffer-composer-installer

PHP\_CodeSniffer Standards Composer Installer Plugin

596161.9M1.9k](/packages/dealerdirect-phpcodesniffer-composer-installer)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
