From cf80d6f18b3e6a70026aaa74dc8b1aa0e7e1da15 Mon Sep 17 00:00:00 2001 From: Rodrigo Primo Date: Wed, 18 Mar 2026 14:43:40 -0300 Subject: [PATCH] Update PHP_CodeSniffer repository link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 447b5b8..475c3e4 100755 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ tests/ *\.inc ``` -Note that the patterns should match [the PHP_CodeSniffer style](https://github.com/squizlabs/PHP_CodeSniffer/wiki/Advanced-Usage#ignoring-files-and-folders): `*` is translated to `.*` for convenience, but all other characters work like a regular expression. +Note that the patterns should match [the PHP_CodeSniffer style](https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki/Advanced-Usage#ignoring-files-and-folders): `*` is translated to `.*` for convenience, but all other characters work like a regular expression. Patterns are relative to the directory that the `.phpcsignore` file lives in. On load, they are translated to absolute patterns: e.g. `*/tests/*` in `/your/dir/.phpcsignore` will become `/your/dir/.*/tests/.*` as a regular expression. **This differs from the regular PHP_CodeSniffer practice.**