From 1b7b6bda4011fc37fb632e54122cfb38a2ccd5f0 Mon Sep 17 00:00:00 2001 From: Rodrigo Primo Date: Mon, 23 Mar 2026 15:52:17 -0300 Subject: [PATCH] Update PHP_CodeSniffer repository link --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 04ef8d1..bdaba3f 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ This repository makes it easier to develop a PHP application or library by provi - [x] [PHP 8.3+](https://www.php.net/releases/8.3/en.php) support - [x] Unit testing with [PHPUnit](https://github.com/sebastianbergmann/phpunit/) ([official website](https://phpunit.de/)) - [x] Validates PHP syntax with [php-parallel-lint](https://github.com/php-parallel-lint/PHP-Parallel-Lint) -- [x] Lint and auto-format PHP code with [PHP CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) (PHPCS) +- [x] Lint and auto-format PHP code with [PHP CodeSniffer](https://github.com/PHPCSStandards/PHP_CodeSniffer) (PHPCS) - [x] Continuous integration with [GitHub Actions](https://github.com/features/actions) - [x] auto-generated documentation with [phpDocumentor](https://www.phpdoc.org/), [GitHub Pages](https://docs.github.com/en/pages) - [x] Composer dependency updates auto-managed with Dependabot @@ -45,7 +45,7 @@ Delete this `README.md`, and rename [`LIBRARY.md`](./LIBRARY.md) to `README.md`. | Tool | File | Documentation | | ---- | ---- | ------------- | | Composer package | [`composer.json`](./composer.json) | [docs](https://getcomposer.org/doc/04-schema.md), [website](https://getcomposer.org/), [repo](https://github.com/composer/composer) | -| PHPCS (formatter + linter) | [`.phpcs.xml`](./.phpcs.xml) | [docs](https://github.com/squizlabs/PHP_CodeSniffer/wiki/Advanced-Usage#using-a-default-configuration-file), [repo](https://github.com/squizlabs/PHP_CodeSniffer) | +| PHPCS (formatter + linter) | [`.phpcs.xml`](./.phpcs.xml) | [docs](https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki/Advanced-Usage#using-a-default-configuration-file), [repo](https://github.com/PHPCSStandards/PHP_CodeSniffer) | | PHPUnit (unit testing) | [`phpunit.xml.dist`](./phpunit.xml.dist) | [docs](https://phpunit.readthedocs.io/en/12.0/configuration.html), [website](https://phpunit.de/), [repo](https://github.com/sebastianbergmann/phpunit) | | phpdoc (documentation generator) | [`phpdoc.dist.xml`](./phpdoc.dist.xml) | [docs](https://docs.phpdoc.org/3.0/guide/references/configuration.html), [website](https://www.phpdoc.org/), [repo](https://github.com/phpdocumentor/phpdocumentor) | | Dependabot | [`.github/dependabot.yml`](./.github/dependabot.yml) | [docs](https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file), [website](https://github.com/dependabot) |