diff --git a/CHANGELOG.md b/CHANGELOG.md index 9de53e3fd..524d238ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ permalink: /docs/en-US/changelog/ * VIP Coding standards v3 ( #2688 ) * Better error messages with links to docs when trying to use a PHP version that isn't installed ( #2689 ) * Opted out of Dotnet package telemetry ( #2689 ) +* Replace references to the Squizlab PHPCS with that from the PHPCS Standards org ( #2692 ) ### Bug Fixes diff --git a/provision/core/phpcs/provision.sh b/provision/core/phpcs/provision.sh index f4bc8dcd5..f772bc30c 100644 --- a/provision/core/phpcs/provision.sh +++ b/provision/core/phpcs/provision.sh @@ -15,7 +15,7 @@ function php_codesniff_setup() { # PHP_CodeSniffer (for running WordPress-Coding-Standards) # Sniffs WordPress Coding Standards - vvv_info " * [PHPCS]: Provisioning PHP_CodeSniffer (phpcs), see https://github.com/squizlabs/PHP_CodeSniffer" + vvv_info " * [PHPCS]: Provisioning PHP_CodeSniffer (phpcs), see https://github.com/PHPCSStandards/PHP_CodeSniffer" noroot mkdir -p /srv/www/phpcs noroot cp -f "/srv/provision/core/phpcs/composer.json" "/srv/www/phpcs/composer.json" @@ -28,6 +28,7 @@ function php_codesniff_setup() { noroot /srv/www/phpcs/bin/phpcs --config-set default_standard WordPress-Core local standards=$(noroot /srv/www/phpcs/bin/phpcs -i) vvv_success " * [PHPCS]: Completed with the following PHPCS standards set up: ${standards}" + vvv_info " * [PHPCS]: Help maintain PHPCS by sponsoring via Github Sponsors at https://github.com/sponsors/phpcsstandards or OpenCollective at https://opencollective.com/php_codesniffer" } export -f php_codesniff_setup