php-censor/docs/en/plugins/php_loc.md
Dmitry Khomutov 320a249153 Improved docs
2016-07-19 15:22:22 +06:00

22 lines
470 B
Markdown

Plugin PHPLoc
-------------
Runs [PHPLoc](https://github.com/sebastianbergmann/phploc) against your project and records some key metrics.
Configuration
=============
### Options
* **directory** - Optional - The directory in which phploc should run.
### Example
Run PHPLOC against the app directory only. This will prevent inclusion of code from 3rd party libraries that are included outside of the app directory.
```yml
test:
php_loc:
directory: "app"
```