From 20659bb76bb809083004f64ae96e5a35a358ab70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Niedzielski?= Date: Thu, 22 Aug 2024 00:30:21 +0200 Subject: [PATCH] Fixed PHP 8+ CI running against incompatible nikic/php-parser v5 --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d5c5bb64..84ea4bd3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -54,4 +54,4 @@ jobs: - name: Run tests run: | - SYMFONY_DEPRECATIONS_HELPER=weak vendor/bin/simple-phpunit ${PHPUNIT_FLAGS} + SYMFONY_DEPRECATIONS_HELPER=weak SYMFONY_PHPUNIT_REQUIRE="nikic/php-parser:^4.9" vendor/bin/simple-phpunit ${PHPUNIT_FLAGS}