From 77422c4631fb9824ecb5a5463f5fdb938fbf93e2 Mon Sep 17 00:00:00 2001 From: Bruce Weirdan Date: Sun, 13 Aug 2023 23:42:52 +0200 Subject: [PATCH] Forbid faulty `nikic/php-parser` version `4.17.0` had a bug that made our CI checks to fail. `4.17.1` fixed that issue (https://github.com/nikic/PHP-Parser/issues/939). --- composer.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/composer.json b/composer.json index 7df7c97af..fcce61b5b 100644 --- a/composer.json +++ b/composer.json @@ -39,6 +39,9 @@ "symfony/console": "^4.1.6 || ^5.0 || ^6.0", "symfony/filesystem": "^5.4 || ^6.0" }, + "conflict": { + "nikic/php-parser": "4.17.0" + }, "provide": { "psalm/psalm": "self.version" },