{"id":16749071,"url":"https://github.com/odolbeau/rabbit-mq-admin-toolkit","last_synced_at":"2025-04-04T22:09:10.394Z","repository":{"id":20454714,"uuid":"23731873","full_name":"odolbeau/rabbit-mq-admin-toolkit","owner":"odolbeau","description":"Manage a RabbitMQ cluster easily.","archived":false,"fork":false,"pushed_at":"2024-03-22T16:37:49.000Z","size":350,"stargazers_count":84,"open_issues_count":6,"forks_count":28,"subscribers_count":5,"default_branch":"master","last_synced_at":"2024-10-14T02:23:52.162Z","etag":null,"topics":["management","php","rabbit","rabbitmq","tooling","toolkit"],"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/odolbeau.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2014-09-06T10:05:06.000Z","updated_at":"2023-04-11T16:04:38.000Z","dependencies_parsed_at":"2022-07-31T20:18:19.077Z","dependency_job_id":"403d39f0-7626-4792-89aa-2b4ac997c8ea","html_url":"https://github.com/odolbeau/rabbit-mq-admin-toolkit","commit_stats":{"total_commits":117,"total_committers":22,"mean_commits":5.318181818181818,"dds":0.6239316239316239,"last_synced_commit":"6cfca083e58ed86b7acb74d4e239198ec73cd843"},"previous_names":[],"tags_count":22,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/odolbeau%2Frabbit-mq-admin-toolkit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/odolbeau%2Frabbit-mq-admin-toolkit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/odolbeau%2Frabbit-mq-admin-toolkit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/odolbeau%2Frabbit-mq-admin-toolkit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/odolbeau","download_url":"https://codeload.github.com/odolbeau/rabbit-mq-admin-toolkit/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247256115,"owners_count":20909240,"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":["management","php","rabbit","rabbitmq","tooling","toolkit"],"created_at":"2024-10-13T02:23:48.047Z","updated_at":"2025-04-04T22:09:10.377Z","avatar_url":"https://github.com/odolbeau.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RabbitMQ Admin Toolkit\n\n[![Build Status](https://travis-ci.org/odolbeau/rabbit-mq-admin-toolkit.svg?branch=master)](https://travis-ci.org/odolbeau/rabbit-mq-admin-toolkit)\n[![Latest Stable Version](https://poser.pugx.org/odolbeau/rabbit-mq-admin-toolkit/v/stable)](https://packagist.org/packages/odolbeau/rabbit-mq-admin-toolkit)\n[![Latest Unstable Version](https://poser.pugx.org/odolbeau/rabbit-mq-admin-toolkit/v/unstable)](https://packagist.org/packages/odolbeau/rabbit-mq-admin-toolkit)\n\n## Installation\n\nThe recommended way to install RabbitMQ Tools is through\n[Composer](https://getcomposer.org/). Require the\n`odolbeau/rabbit-mq-admin-toolkit` package:\n\n```bash\n$ composer require odolbeau/rabbit-mq-admin-toolkit\n```\n\n## Usage\n\nYou can create / update vhosts with the following command:\n\n    vendor/bin/rabbit vhost:mapping:create conf/vhost/events.yml\n\nYou can change all connection informations with options. Launch `./console\nvhost:create -h` to have more informations.\n\nYou can launch the vhost creation even if the vhost already exist. Nothing will\nbe deleted (and it will not impact workers).\n\n## Configuration\n\nYou can use the followings parameters for configuring an exchange:\n\n* `with dl`: if set to true, all queues in the current vhost will be\n  automatically configured to have a dl (with name: `{queueName}_dl`). Of\n  course, the exchange `dl` will be created.\n* `with_unroutable`: is set to true, an `unroutable` exchange will be created\n  and all  others ones will be configured to move unroutable messages to this\n  one. The `unroutable` exchange is a fanout exchange and a `unroutable` queue\n  is bind on it.\n\n## Example\n\n```yaml\nmy_vhost_name:\n\n    permissions:\n        my_user:\n            configure: amq\\.gen.*\n            read: .*\n            write: .*\n            \n    parameters:\n        with_dl: true # If true, all queues will have a dl and the corresponding mapping with the exchange \"dl\"\n        with_unroutable: true # If true, all exchange will be declared with an unroutable config\n\n    exchanges:\n        my_exchange:\n            type: direct\n            durable: true\n            with_unroutable: true #if true, unroutable exchange will be created (if not already set as global parameter)\n\n        my_exchange_headers:\n            type: headers\n            durable: true\n\n    queues:\n        my_queue:\n            durable: true\n            delay: 5000 #create delayed message queue (value is in milliseconds)\n            bindings:\n                - \n                    exchange: my_exchange\n                    routing_key: my_routing_key\n                - \n                    exchange: my_exchange\n                    routing_key: other_routing_key\n                    \n        another_queue:\n            durable: true\n            with_dl: false\n            retries: [25, 125, 625]\n            bindings:\n                - \n                    exchange: my_exchange_headers\n                    x-match: all\n                    matches: {header_name: value, other_header_name: some_value}\n```\n\n## License\n\nThis project is released under the MIT License. See the bundled LICENSE file\nfor details.\n\n## Changelog\n\n### BC breaks between 1.x and 2.0.x\n\n  * Short binding syntax is no more supported. \n```yaml\n  # old syntax\n  queues:\n    my_queue:\n        bindings:\n            - my_exchange:my_routing_key\n```\nmust be replaced by\n```yaml\n  # new syntax\n  queues:\n    my_queue:\n        bindings:\n            - \n                exchange: my_exchange\n                routing_key: my_routing_key\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fodolbeau%2Frabbit-mq-admin-toolkit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fodolbeau%2Frabbit-mq-admin-toolkit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fodolbeau%2Frabbit-mq-admin-toolkit/lists"}