From 1e6613d77d12628023267cca6791a5e712635d67 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 (old org) https://github.com/PHPCSStandards/PHP_CodeSniffer/issues/109 (new org) 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. It would be so great if the new one gets some support... (right now it's a 1-person project, basically). --- 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" },