Skip to content

Commit

Permalink
Merge pull request #229 from ember-nexus/github-issue/203
Browse files Browse the repository at this point in the history
Enable `composer mess` in CI due to fixed upstream issue, closes #203.
  • Loading branch information
Syndesi authored Dec 23, 2023
2 parents 9425ca5 + e08e39e commit 3a499c5
Show file tree
Hide file tree
Showing 6 changed files with 208 additions and 205 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@ jobs:
needs:
- build-docker-image
continue-on-error: true
if: ${{ false }} # deactivated due to https://github.com/ember-nexus/api/issues/203
steps:
- uses: actions/checkout@v3
- run: mkdir -p /tmp/docker
Expand All @@ -193,7 +192,7 @@ jobs:
- cs-lint
- test-mutant
- test-leak
# - test-mess-detector
- test-mess-detector
strategy:
matrix:
dockerCompose:
Expand Down Expand Up @@ -233,7 +232,7 @@ jobs:
- cs-lint
- test-mutant
- test-leak
# - test-mess-detector
- test-mess-detector
steps:
- uses: actions/checkout@v3
- run: mkdir -p /tmp/docker
Expand Down Expand Up @@ -268,7 +267,7 @@ jobs:
- cs-lint
- test-mutant
- test-leak
# - test-mess-detector
- test-mess-detector
steps:
- uses: actions/checkout@v3
- run: mkdir -p /tmp/docker
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Constants are changed to contain type declarations, closes #211.
- Remove timeout from PHP-tasks, closes #220. CI timeouts still apply.
- Upgrade PHP to 8.3.1, closes #223.
- Enable `composer mess` in CI due to fixed upstream issue, closes #203.

## 0.1.0 - 2023-12-16
### Added
Expand Down
47 changes: 23 additions & 24 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,50 +8,49 @@
"php": ">=8.3",
"ext-ctype": "*",
"ext-iconv": "*",
"league/flysystem": "^3.0",
"league/flysystem-aws-s3-v3": "^3.0",
"league/flysystem-bundle": "^3.1",
"league/flysystem-ziparchive": "^3.15",
"guzzlehttp/guzzle": "^7.5",
"mongodb/mongodb": "^1.13",
"php-amqplib/php-amqplib": "^3.5",
"predis/predis": "*",
"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",
"mongodb/mongodb": "^1.17",
"php-amqplib/php-amqplib": "^3.6",
"predis/predis": "^2.2",
"ramsey/uuid": "^4.7",
"symfony/asset": "7.0.*",
"symfony/console": "7.0.*",
"symfony/dotenv": "7.0.*",
"symfony/event-dispatcher": "7.0.*",
"symfony/filesystem": "7.0.*",
"symfony/flex": "^2",
"symfony/flex": "^2.4",
"symfony/framework-bundle": "7.0.*",
"symfony/monolog-bundle": "^3.8",
"symfony/monolog-bundle": "^3.10",
"symfony/runtime": "7.0.*",
"symfony/string": "7.0.*",
"symfony/yaml": "7.0.*",
"syndesi/cypher-entity-manager": "^0.1",
"syndesi/elastic-entity-manager": "^0.0",
"syndesi/mongo-entity-manager": "^0.0",
"thecodingmachine/safe": "^2.4",
"syndesi/cypher-entity-manager": "^0.1.0",
"syndesi/elastic-entity-manager": "^0.0.3",
"syndesi/mongo-entity-manager": "^0.0.6",
"thecodingmachine/safe": "^2.5",
"tuupola/base58": "^2.1"
},
"require-dev": {
"boesing/psalm-plugin-stringf": "^1.1",
"friendsofphp/php-cs-fixer": "^3.8",
"infection/infection": "^0.27",
"pdepend/pdepend": "~2.15",
"boesing/psalm-plugin-stringf": "^1.4",
"friendsofphp/php-cs-fixer": "^3.41",
"infection/infection": "^0.27.9",
"phpbench/phpbench": "^1.2",
"phpmd/phpmd": "^2.13",
"phpmd/phpmd": "^2.14",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^1.6",
"phpstan/phpstan": "^1.10",
"phpunit/php-code-coverage": "^9.2",
"phpunit/phpunit": "^9.5",
"roave/no-leaks": "^1.3",
"symfony/maker-bundle": "^1.48",
"phpunit/phpunit": "^9.6",
"roave/no-leaks": "^1.5",
"symfony/maker-bundle": "^1.52",
"symfony/phpunit-bridge": "^7.0",
"symfony/stopwatch": "7.0.*",
"symfony/web-profiler-bundle": "7.0.*",
"thecodingmachine/phpstan-safe-rule": "^1.2",
"vimeo/psalm": "^5.14"
"vimeo/psalm": "^5.18"
},
"config": {
"allow-plugins": {
Expand Down
Loading

0 comments on commit 3a499c5

Please sign in to comment.