Fixed PhpCsFixer directory. Issue #75.

This commit is contained in:
Dmitry Khomutov 2017-05-31 21:19:22 +07:00
commit 41f7597c05
No known key found for this signature in database
GPG key ID: 7EB36C9576F9ECB9
2 changed files with 37 additions and 5 deletions

View file

@ -13,6 +13,7 @@ Configuration
* **directory** [string, optional] - The directory in which PHP CS Fixer should work (default: `%BUILD_PATH%`)
* **rules** [string, optional] - Fixer rules (default: `@PSR2`)
* **args** [string, optional] - Command line args (in string format) to pass to PHP Coding Standards Fixer (default: ``)
* **config** [string, optional] - Special config file (default: `%BUILD_PATH%./.php_cs` or `%BUILD_PATH%./.php_cs.dist`)
### Examples
@ -31,3 +32,9 @@ test:
diff: true
rules: "@PSR2"
```
```yml
test:
php_cs_fixer:
config: "./my/dir/.php_cs.special"
```