From b2aca9ef518454dcbf3dc23127a42ee49657c813 Mon Sep 17 00:00:00 2001 From: "Eloy Lafuente (stronk7)" Date: Sat, 2 Dec 2023 20:01:26 +0100 Subject: [PATCH] Move phpcs from squizlabs to phpcsstandards PHP_Codesniffer is being abandoned by squizlabs. See: https://github.com/squizlabs/PHP_CodeSniffer/issues/3932 So it has been moved (copied, not transferred, not good, squizlabs) to the PHPCSStandards organisation. So this PR just moves us to start using the new organisation. Let's see how things evolve. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 3ec2e09..f3bc120 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,7 @@ ], "require": { "dealerdirect/phpcodesniffer-composer-installer": "^1.0.0", - "squizlabs/php_codesniffer": "^3.7.2", + "phpcsstandards/php_codesniffer": "^3.7.2", "phpcsstandards/phpcsextra": "^1.1.0", "phpcompatibility/php-compatibility": "dev-develop#0a17f9ed" },