From 16022d9b637830bac6eba3032a50503ee5957c52 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Tue, 30 Jun 2020 03:31:07 +0200 Subject: [PATCH] Composer: remove the Composer PHPCS plugin The Dealerdirect Composer PHPCS plugin is already a (non-dev) requirement of PHPCSUtils, so will be installed whether you require it or not. By removing it from the `composer.json` file, potential conflicts between the versions allowed by PHPCSUtils and this plugin are prevented. Note: The plugin has released a new version last week and the new version of PHPCSUtils which was also released a few days back, already allows for it. The new version of the plugin includes support for Composer 2.0 and allows for testing standards with the plugin on PHP 8 and with PHPCS 4.x-dev. Ref: https://github.com/Dealerdirect/phpcodesniffer-composer-installer/releases/tag/v0.7.0 --- composer.json | 1 - 1 file changed, 1 deletion(-) diff --git a/composer.json b/composer.json index dc27b5a8..72f888a4 100644 --- a/composer.json +++ b/composer.json @@ -44,7 +44,6 @@ "phpcsstandards/phpcsutils": "^1.0" }, "require-dev": { - "dealerdirect/phpcodesniffer-composer-installer": "^0.4.4 || ^0.5 || ^0.6", "phpunit/phpunit": "^5.0 || ^6.5 || ^7.0 || ^8.0", "sirbrillig/phpcs-import-detection": "^1.1", "limedeck/phpunit-detailed-printer": "^3.1 || ^4.0 || ^5.0",