php-censor/docs/en/plugins/php_loc.md

15 lines
427 B
Markdown
Raw Normal View History

2016-07-17 16:20:35 +02:00
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"
```