Skip to content

Commit 5c333dc

Browse files
authored
Fix psalm cache dir + Update composer deps (#260)
1 parent 071422a commit 5c333dc

3 files changed

Lines changed: 12 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
- Chg #255: Refactor `Makefile` default command help logic (@samdark)
66
- Bug #256: Fix incorrect .env files used in Docker Compose for production (@aa-chernyh)
77
- Enh #258: Set locale `C.UTF-8` in `Dockerfile` (@vjik)
8+
- Bug #260: Fix psalm cache directory in configuration file (@vjik)
9+
- Enh #260: Update composer dependencies (@vjik)
810

911
## 1.1.0 December 22, 2025
1012

composer.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@
3838
"psr/http-server-handler": "^1.0.2",
3939
"psr/http-server-middleware": "^1.0.2",
4040
"psr/log": "^3.0.2",
41-
"symfony/console": "^7.4.1",
41+
"symfony/console": "^7.4.4",
4242
"yiisoft/aliases": "^3.1.1",
4343
"yiisoft/config": "^1.6.2",
4444
"yiisoft/data": "^1.0.1",
4545
"yiisoft/data-response": "^2.1.2",
4646
"yiisoft/definitions": "^3.4.1",
4747
"yiisoft/di": "^1.4.1",
48-
"yiisoft/error-handler": "^4.3.1",
48+
"yiisoft/error-handler": "^4.3.2",
4949
"yiisoft/http": "^1.3",
5050
"yiisoft/hydrator": "^1.6.3",
5151
"yiisoft/injector": "^1.2.1",
@@ -65,19 +65,19 @@
6565
},
6666
"require-dev": {
6767
"codeception/c3": "^2.9",
68-
"codeception/codeception": "^5.3.3",
68+
"codeception/codeception": "^5.3.4",
6969
"codeception/lib-innerbrowser": "^4.0.8",
70-
"codeception/module-asserts": "^3.2.1",
70+
"codeception/module-asserts": "^3.3.0",
7171
"codeception/module-cli": "^2.0.1",
7272
"codeception/module-db": "^3.2.2",
7373
"codeception/module-phpbrowser": "^3.0.2",
74-
"codeception/module-rest": "^3.4.1",
75-
"friendsofphp/php-cs-fixer": "^3.92.3",
76-
"phpunit/phpunit": "^11.5.46",
77-
"rector/rector": "^2.2.14",
74+
"codeception/module-rest": "^3.4.3",
75+
"friendsofphp/php-cs-fixer": "^3.93.0",
76+
"phpunit/phpunit": "^11.5.49",
77+
"rector/rector": "^2.3.4",
7878
"roave/infection-static-analysis-plugin": "^1.40",
7979
"shipmonk/composer-dependency-analyser": "^1.8.4",
80-
"vimeo/psalm": "^6.14.2"
80+
"vimeo/psalm": "^6.14.3"
8181
},
8282
"autoload": {
8383
"psr-4": {

psalm.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
findUnusedCode="false"
66
ensureOverrideAttribute="false"
77
strictBinaryOperands="false"
8-
cacheDirectory="/app/runtime/cache/psalm"
8+
cacheDirectory="./runtime/cache/psalm"
99
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1010
xmlns="https://getpsalm.org/schema/config"
1111
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"

0 commit comments

Comments
 (0)