Skip to content

Commit

Permalink
Merge pull request #41 from Yousign/symfony_7x_support
Browse files Browse the repository at this point in the history
Add support of Symfony 7.x
  • Loading branch information
ndousson authored Mar 20, 2024
2 parents 05362a2 + 3de910d commit 91cb8f9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@
"prefer-stable": true,
"require": {
"php": "^8.1.0",
"symfony/console": "^6.2"
"symfony/console": "^6.2|^7.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.1",
"symfony/browser-kit": "^6.2",
"symfony/framework-bundle": "^6.2",
"symfony/yaml": "^6.2",
"symfony/messenger": "^6.2"
"symfony/browser-kit": "^6.2|^7.0",
"symfony/framework-bundle": "^6.2|^7.0",
"symfony/yaml": "^6.2|^7.0",
"symfony/messenger": "^6.2|^7.0"
},
"autoload": {
"psr-4": {
Expand Down
4 changes: 2 additions & 2 deletions src/Listener/Symfony/MessengerListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ public function onMessageReceived(WorkerMessageReceivedEvent $event): void
$this->logger->log(
'warning',
'An error occurred when comparing the consumed message to the messages in `ZddMessageConfigInterface::getMessageToAssert`', [
$throwable->getMessage(),
]);
$throwable->getMessage(),
]);
}
}

Expand Down

0 comments on commit 91cb8f9

Please sign in to comment.