We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9732cd6 commit 9e1ced9Copy full SHA for 9e1ced9
README.md
@@ -69,7 +69,16 @@ $rules = \IxDFCodingStandard\PhpCsFixer\Rules::get();
69
70
## Usage
71
72
-Add composer scripts to your `composer.json`:
+```shell
73
+vendor/bin/phpcs # check with PHP_CodeSniffer
74
+vendor/bin/phpcbf # fix with PHP_CodeSniffer
75
+vendor/bin/php-cs-fixer fix --dry-run --diff # check with PHP-CS-Fixer
76
+vendor/bin/php-cs-fixer fix # fix with PHP-CS-Fixer
77
+```
78
+
79
+### Composer scripts (recommended)
80
81
+Add to your `composer.json`:
82
83
```json
84
"scripts": {
0 commit comments