Updated Php parallel lint plugin (markdown)

Mike Bronner 2015-04-01 20:48:38 -07:00
commit afd1abaa1d

@ -2,13 +2,15 @@ Similar to the [standard PHP Lint plugin](https://github.com/Block8/PHPCI/wiki/L
## Configuration
### Options
* **directory** [optional] - directory to inspect (default: build root)
* **ignore** [optional] - directory to ignore (default: inherits ignores specified in setup)
* **directory** [string, optional] - directory to inspect (default: build root)
* **ignore** [array, optional] - directory to ignore (default: inherits ignores specified in setup)
### Example
```yml
test:
php_parallel_lint:
directory: "app"
ignore: "test"
ignore:
- "vendor"
- "test"
```