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 @@ -19,6 +19,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Enable PHP CS Fixer rule `self_accessor`, which prefers `self` over the element's class name.
- Change value of HTTP header `X-Powered-By` to `Ember Nexus API`.
- Move configuration files and scripts out of root folder, closes #237.
- Replace flysystem AWS with `async-aws/s3`, closes #235.
- Upgrade dependencies.
### Fixed
- Fix monospace font in documentation (graph renderings), closes #152.
- Fix bug where updated timestamps where not updated when they already where set to a value.
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
"php": ">=8.3",
"ext-ctype": "*",
"ext-iconv": "*",
"async-aws/s3": "^2.2",
"guzzlehttp/guzzle": "^7.8",
"league/flysystem": "^3.23",
"league/flysystem-aws-s3-v3": "^3.22",
"league/flysystem-bundle": "^3.3",
"league/flysystem-ziparchive": "^3.21",
"league/flysystem-ziparchive": "^3.23",
"mongodb/mongodb": "^1.17",
"php-amqplib/php-amqplib": "^3.6",
"predis/predis": "^2.2",
Expand All @@ -37,11 +37,11 @@
"require-dev": {
"beste/psr-testlogger": "^1.0",
"boesing/psalm-plugin-stringf": "^1.4",
"friendsofphp/php-cs-fixer": "^3.41",
"friendsofphp/php-cs-fixer": "^3.48",
"infection/infection": "^0.27.9",
"phpbench/phpbench": "^1.2",
"phpmd/phpmd": "^2.14",
"phpspec/prophecy-phpunit": "^2.0",
"phpmd/phpmd": "^2.15",
"phpspec/prophecy-phpunit": "^2.1",
"phpstan/phpstan": "^1.10",
"phpunit/php-code-coverage": "^9.2",
"phpunit/phpunit": "^9.6",
Expand All @@ -51,7 +51,7 @@
"symfony/stopwatch": "7.0.*",
"symfony/web-profiler-bundle": "7.0.*",
"thecodingmachine/phpstan-safe-rule": "^1.2",
"vimeo/psalm": "^5.18"
"vimeo/psalm": "^5.20"
},
"config": {
"allow-plugins": {
Expand Down
Loading