mrandmrssmith / symfony-messenger-json-serializer
Provide a JSON serializer for Symfony Messenger messages
Requires
- php: >=7.2
- ext-json: *
- symfony/messenger: >=4.4
- symfony/property-access: >=4.4
- symfony/serializer: >=4.4
Requires (Dev)
- phpstan/phpstan: ^1.10
- phpstan/phpstan-phpunit: ^1.3
- phpunit/phpunit: >=8.5
- roave/security-advisories: dev-master
- symplify/easy-coding-standard: ^12.1
- vimeo/psalm: ^4.30||^5.22
This package is auto-updated.
Last update: 2025-03-23 10:48:41 UTC
README
A JSON serializer for external messages from Symfony Messenger. This will allow you to have one single JSON serializer for all your external message. You only need to register the service, alias it and mention which message you would like to be deserialized.
Installation
Add this package to your project
composer require mrandmrssmith/symfony-messenger-json-serializer
Usage
- Configure Messenger
framework: messenger: transports: external: dsn: '%env(MESSENGER_DSN)%' serializer: external_message.messenger.serializer routing: 'MrAndMrsSmith\Queue\ExternalMessage': external
- Configure your serializer
external_message.messenger.serializer: class: MrAndMrsSmith\SymfonyMessengerJSONSerializer\Serializer\MessengerJSONSerializer arguments: $messageClass: MrAndMrsSmith\Queue\ExternalMessage
Support
🤗 Please consider contributing if you feel you can improve this package, otherwise submit an issue via the GitHub page and include as much information as possible, including steps to reproduce, platform versions and anything else to help pinpoint the root cause.
Contributing
👍 If you do contribute, we thank you, but please review the CONTRIBUTING document to help us ensure the project is kept consistent and easy to maintain.
Versioning
⌛ This project will follow Semantic Versioning 2.0.0.
Changes
🛠️ All project changes/releases are noted in the GitHub releases page and in the CHANGELOG file.
Following conventions laid out by keep a changelog.