From f0068affe5177e14425c67eac5ead5ce9ec852ae Mon Sep 17 00:00:00 2001 From: W0rma Date: Thu, 11 Dec 2025 13:48:22 +0100 Subject: [PATCH 1/2] Fix composer install because mongodb module requires php extension --- composer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/composer.json b/composer.json index 20b4591d3..d618efdd5 100644 --- a/composer.json +++ b/composer.json @@ -39,6 +39,7 @@ }, "config": { "platform": { + "ext-mongodb": "1.21.2", "ext-phalcon": "4.1.1" }, "allow-plugins": { From a4d0e4367f1f3600837ba8e775fc4c25c90859f8 Mon Sep 17 00:00:00 2001 From: W0rma Date: Thu, 11 Dec 2025 14:16:25 +0100 Subject: [PATCH 2/2] Use PHP 8.2 because PHP 8.1 has been dropped by some codeception packages --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0bc45d58c..fc8539063 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -33,7 +33,7 @@ jobs: env: COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - php-version: 8.1 + php-version: 8.2 - name: Install dependencies run: composer install --prefer-dist --no-progress