PHPackages                             facile-it/mongodb-messenger-transport - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Database &amp; ORM](/categories/database)
4. /
5. facile-it/mongodb-messenger-transport

ActiveSymfony-bundle[Database &amp; ORM](/categories/database)

facile-it/mongodb-messenger-transport
=====================================

A Symfony Messenger transport on MongoDB, on top of facile-it/mongodb-bundle

1.8.0(5mo ago)782.5k↓28%3[1 issues](https://github.com/facile-it/mongodb-messenger-transport/issues)MITPHPPHP ^8.1CI passing

Since Jul 8Pushed 1w ago23 watchersCompare

[ Source](https://github.com/facile-it/mongodb-messenger-transport)[ Packagist](https://packagist.org/packages/facile-it/mongodb-messenger-transport)[ RSS](/packages/facile-it-mongodb-messenger-transport/feed)WikiDiscussions 1.x Synced 3d ago

READMEChangelog (10)Dependencies (21)Versions (20)Used By (0)

facile-it/mongodb-messenger-transport
=====================================

[](#facile-itmongodb-messenger-transport)

A Symfony Messenger transport on MongoDB, on top of [`facile-it/mongodb-bundle`](https://github.com/facile-it/mongodb-bundle/)

[![Latest Stable Version](https://camo.githubusercontent.com/ddb59b4b246cf4a24a00fa2ef34b8cc301494c91d65ae6eb12e94b6d8dbee4c8/68747470733a2f2f706f7365722e707567782e6f72672f666163696c652d69742f6d6f6e676f64622d6d657373656e6765722d7472616e73706f72742f76)](//packagist.org/packages/facile-it/mongodb-messenger-transport)[![Total Downloads](https://camo.githubusercontent.com/7773329e49a2d309b8f772a58540cb9026fe1666d39144c5a4efc862534376a0/68747470733a2f2f706f7365722e707567782e6f72672f666163696c652d69742f6d6f6e676f64622d6d657373656e6765722d7472616e73706f72742f646f776e6c6f616473)](//packagist.org/packages/facile-it/mongodb-messenger-transport)[![Latest Unstable Version](https://camo.githubusercontent.com/842260f66490a85e7c2adbab83b69d709c1799895c0d08ce7e40bf93520d5c83/68747470733a2f2f706f7365722e707567782e6f72672f666163696c652d69742f6d6f6e676f64622d6d657373656e6765722d7472616e73706f72742f762f756e737461626c65)](//packagist.org/packages/facile-it/mongodb-messenger-transport)[![License](https://camo.githubusercontent.com/332265858e503fe8bf6dfab374b204f7ccb88bece3788558af7d359c76b0fda4/68747470733a2f2f706f7365722e707567782e6f72672f666163696c652d69742f6d6f6e676f64622d6d657373656e6765722d7472616e73706f72742f6c6963656e7365)](//packagist.org/packages/facile-it/mongodb-messenger-transport)

[![CI](https://github.com/facile-it/mongodb-messenger-transport/actions/workflows/ci.yaml/badge.svg)](https://github.com/facile-it/mongodb-messenger-transport/actions/workflows/ci.yaml)[![Static analysis](https://github.com/facile-it/mongodb-messenger-transport/actions/workflows/static-analysis.yaml/badge.svg)](https://github.com/facile-it/mongodb-messenger-transport/actions/workflows/static-analysis.yaml)[![codecov](https://camo.githubusercontent.com/ccf6d2b9374908fbc6d37f9c1c09cc2cf2a16be987a6a6149836a4455db8ba87/68747470733a2f2f636f6465636f762e696f2f67682f666163696c652d69742f6d6f6e676f64622d6d657373656e6765722d7472616e73706f72742f6272616e63682f6d61737465722f67726170682f62616467652e737667)](https://codecov.io/gh/facile-it/mongodb-messenger-transport)

Installation
------------

[](#installation)

- To install this package, use Composer:

```
composer require facile-it/mongodb-messenger-transport
```

This package register itself as a bundle inside Symfony; you have to have both it and the `FacileMongoDbBundle` enabled, if you hadn't it before. To do it, you either:

- let Flex enable it automatically, if you're using it:

```
# config/bundles.php

# ...
    Facile\MongoDbBundle\FacileMongoDbBundle::class => ['all' => true],
+     Facile\MongoDbMessenger\FacileMongoDbMessengerBundle::class => ['all' => true],
];
```

- Enable it yourself in your kernel:

```
