From 2db029f45b3ace34ea46d5cfc52401355a4e76c2 Mon Sep 17 00:00:00 2001 From: Sergei Predvoditelev Date: Sun, 25 Jan 2026 10:55:29 +0300 Subject: [PATCH] Fix psalm cache dir + Update composer deps --- CHANGELOG.md | 2 ++ composer.json | 18 +++++++++--------- psalm.xml | 2 +- 3 files changed, 12 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0403ece..4ef5721 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ - Chg #255: Refactor `Makefile` default command help logic (@samdark) - Bug #256: Fix incorrect .env files used in Docker Compose for production (@aa-chernyh) - Enh #258: Set locale `C.UTF-8` in `Dockerfile` (@vjik) +- Bug #260: Fix psalm cache directory in configuration file (@vjik) +- Enh #260: Update composer dependencies (@vjik) ## 1.1.0 December 22, 2025 diff --git a/composer.json b/composer.json index ad5f48d..060ba60 100644 --- a/composer.json +++ b/composer.json @@ -38,14 +38,14 @@ "psr/http-server-handler": "^1.0.2", "psr/http-server-middleware": "^1.0.2", "psr/log": "^3.0.2", - "symfony/console": "^7.4.1", + "symfony/console": "^7.4.4", "yiisoft/aliases": "^3.1.1", "yiisoft/config": "^1.6.2", "yiisoft/data": "^1.0.1", "yiisoft/data-response": "^2.1.2", "yiisoft/definitions": "^3.4.1", "yiisoft/di": "^1.4.1", - "yiisoft/error-handler": "^4.3.1", + "yiisoft/error-handler": "^4.3.2", "yiisoft/http": "^1.3", "yiisoft/hydrator": "^1.6.3", "yiisoft/injector": "^1.2.1", @@ -65,19 +65,19 @@ }, "require-dev": { "codeception/c3": "^2.9", - "codeception/codeception": "^5.3.3", + "codeception/codeception": "^5.3.4", "codeception/lib-innerbrowser": "^4.0.8", - "codeception/module-asserts": "^3.2.1", + "codeception/module-asserts": "^3.3.0", "codeception/module-cli": "^2.0.1", "codeception/module-db": "^3.2.2", "codeception/module-phpbrowser": "^3.0.2", - "codeception/module-rest": "^3.4.1", - "friendsofphp/php-cs-fixer": "^3.92.3", - "phpunit/phpunit": "^11.5.46", - "rector/rector": "^2.2.14", + "codeception/module-rest": "^3.4.3", + "friendsofphp/php-cs-fixer": "^3.93.0", + "phpunit/phpunit": "^11.5.49", + "rector/rector": "^2.3.4", "roave/infection-static-analysis-plugin": "^1.40", "shipmonk/composer-dependency-analyser": "^1.8.4", - "vimeo/psalm": "^6.14.2" + "vimeo/psalm": "^6.14.3" }, "autoload": { "psr-4": { diff --git a/psalm.xml b/psalm.xml index 08f8212..a17f604 100644 --- a/psalm.xml +++ b/psalm.xml @@ -5,7 +5,7 @@ findUnusedCode="false" ensureOverrideAttribute="false" strictBinaryOperands="false" - cacheDirectory="/app/runtime/cache/psalm" + cacheDirectory="./runtime/cache/psalm" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="https://getpsalm.org/schema/config" xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"