From b07df4ac2c01e61c331cd949043bdb0e7078e669 Mon Sep 17 00:00:00 2001 From: Zoran Dori Date: Mon, 20 Mar 2023 23:41:18 +0100 Subject: [PATCH] build: Update composer dependencies --- .phpcs.xml | 5 ++--- composer.json | 19 ++++++++++--------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.phpcs.xml b/.phpcs.xml index ff4c607..b915cf8 100644 --- a/.phpcs.xml +++ b/.phpcs.xml @@ -1,8 +1,7 @@ - + . - + - ^vendor diff --git a/composer.json b/composer.json index ccf8a7a..3066c77 100644 --- a/composer.json +++ b/composer.json @@ -12,21 +12,22 @@ "minimum-stability": "stable", "require": {}, "require-dev": { - "jakub-onderka/php-parallel-lint": "1.0.0", - "jakub-onderka/php-console-highlighter": "0.3.2", - "mediawiki/mediawiki-codesniffer": "24.0.0", - "mediawiki/minus-x": "0.3.1", - "phpmd/phpmd": "~2.1" + "mediawiki/mediawiki-codesniffer": "41.0.0", + "mediawiki/minus-x": "1.1.1", + "phpmd/phpmd": "~2.1", + "php-parallel-lint/php-console-highlighter": "1.0.0", + "php-parallel-lint/php-parallel-lint": "1.3.2" }, "scripts": { "test": [ - "parallel-lint . --exclude vendor", - "phpcs -p -s", - "minus-x check ." + "parallel-lint . --exclude vendor --exclude node_modules", + "minus-x check .", + "@phpcs" ], "fix": [ "minus-x fix .", "phpcbf" - ] + ], + "phpcs": "phpcs -sp --cache" } }