{"id":15077707,"url":"https://github.com/invis1ble/messenger-bundle","last_synced_at":"2026-02-11T04:31:56.854Z","repository":{"id":192158799,"uuid":"686490169","full_name":"Invis1ble/messenger-bundle","owner":"Invis1ble","description":"Symfony Bundle for the Bus and Message Interfaces and Implementations.","archived":false,"fork":false,"pushed_at":"2024-06-12T21:42:17.000Z","size":102,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-10-13T06:21:04.736Z","etag":null,"topics":["command","command-bus","cqrs","event","event-bus","message-bus","messenger","query","query-bus","symfony-bundle"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Invis1ble.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-09-03T00:46:39.000Z","updated_at":"2024-06-12T21:42:21.000Z","dependencies_parsed_at":"2024-06-06T02:37:13.297Z","dependency_job_id":"b58ec702-300c-465a-ad57-dfd7d88d6faf","html_url":"https://github.com/Invis1ble/messenger-bundle","commit_stats":{"total_commits":41,"total_committers":2,"mean_commits":20.5,"dds":"0.024390243902439046","last_synced_commit":"abae6d3de202d9851ad5e6b02808c8ffe5558445"},"previous_names":["invis1ble/messenger-bundle"],"tags_count":24,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Invis1ble%2Fmessenger-bundle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Invis1ble%2Fmessenger-bundle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Invis1ble%2Fmessenger-bundle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Invis1ble%2Fmessenger-bundle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Invis1ble","download_url":"https://codeload.github.com/Invis1ble/messenger-bundle/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":219854562,"owners_count":16556186,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["command","command-bus","cqrs","event","event-bus","message-bus","messenger","query","query-bus","symfony-bundle"],"created_at":"2024-09-25T04:30:21.741Z","updated_at":"2025-10-29T05:30:21.900Z","avatar_url":"https://github.com/Invis1ble.png","language":"PHP","readme":"MessengerBundle\n==================\n\n![CI Status](https://github.com/Invis1ble/messenger-bundle/actions/workflows/ci.yml/badge.svg?event=push)\n[![Code Coverage](https://codecov.io/gh/Invis1ble/messenger-bundle/graph/badge.svg?token=K7S3BXER5K)](https://codecov.io/gh/Invis1ble/messenger-bundle)\n[![Packagist](https://img.shields.io/packagist/v/Invis1ble/messenger-bundle.svg)](https://packagist.org/packages/Invis1ble/messenger-bundle)\n[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)\n\nThe `MessengerBundle` provides integration of the [invis1ble/messenger](https://github.com/Invis1ble/messenger) library into the Symfony framework.\n\n\nInstallation\n------------\n\nMake sure Composer is installed globally, as explained in the\n[installation chapter](https://getcomposer.org/doc/00-intro.md)\nof the Composer documentation.\n\n### Applications that use Symfony Flex\n\nOpen a command console, enter your project directory and execute:\n\n```console\n$ composer require invis1ble/messenger-bundle\n```\n\n### Applications that don't use Symfony Flex\n\n#### Step 1: Download the Bundle\n\nOpen a command console, enter your project directory and execute the\nfollowing command to download the latest stable version of this bundle:\n\n```console\n$ composer require invis1ble/messenger-bundle\n```\n\n#### Step 2: Enable the Bundle\n\nThen, enable the bundle by adding it to the list of registered bundles\nin the `config/bundles.php` file of your project:\n\n```php\n// config/bundles.php\n\nreturn [\n    // ...\n    Invis1ble\\MessengerBundle\\Invis1bleMessengerBundle::class =\u003e ['all' =\u003e true],\n];\n```\n\n\nDevelopment\n-----------\n\n### Getting started\n\n1. If not already done, [install Docker Compose](https://docs.docker.com/compose/install/) (v2.10+)\n2. Run `docker compose build --no-cache` to build fresh images\n3. Run `docker compose up -d --wait` to start the Docker containers\n4. Run `docker compose exec php composer install` to install dependencies\n5. Run `docker compose down --remove-orphans` to stop the Docker containers.\n\n### Check for Coding Standards violations\n\nRun PHP_CodeSniffer checks:\n\n```sh\ndocker compose exec -it php bin/php_codesniffer\n```\n\nRun PHP-CS-Fixer checks:\n\n```sh\ndocker compose exec -it php bin/php-cs-fixer\n```\n\n\nTesting\n-------\n\nTo run Unit tests during development\n\n```sh\ndocker compose exec php vendor/bin/phpunit\n```\n\nTo run with coverage\n\n```sh\nXDEBUG_MODE=coverage docker compose up -d --wait\ndocker compose exec php vendor/bin/phpunit --coverage-clover var/log/coverage-clover.xml\n```\n\n\nLicense\n-------\n\n[The MIT License](./LICENSE)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finvis1ble%2Fmessenger-bundle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finvis1ble%2Fmessenger-bundle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finvis1ble%2Fmessenger-bundle/lists"}