diff --git a/README.md b/README.md index 7c9932e9a1..bc1c5cc558 100644 --- a/README.md +++ b/README.md @@ -49,16 +49,16 @@ php phpcbf.phar -h ### Composer If you use Composer, you can install PHP_CodeSniffer system-wide with the following command: ```bash -composer global require "squizlabs/php_codesniffer=*" +composer global require "phpcsstandards/php_codesniffer=*" ``` Make sure you have the composer bin dir in your PATH. The default value is `~/.composer/vendor/bin/`, but you can check the value that you need to use by running `composer global config bin-dir --absolute`. -Or alternatively, include a dependency for `squizlabs/php_codesniffer` in your `composer.json` file. For example: +Or alternatively, include a dependency for `phpcsstandards/php_codesniffer` in your `composer.json` file. For example: ```json { "require-dev": { - "squizlabs/php_codesniffer": "^3.0" + "phpcsstandards/php_codesniffer": "^3.0" } } ```