Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion psalm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down