{"id":20677766,"url":"https://github.com/clivern/rabbitmq-hole","last_synced_at":"2025-04-19T20:58:11.133Z","repository":{"id":37030456,"uuid":"419245198","full_name":"Clivern/rabbitmq-hole","owner":"Clivern","description":"RabbitMQ HTTP API Client In PHP.","archived":false,"fork":false,"pushed_at":"2025-04-13T04:29:04.000Z","size":216,"stargazers_count":0,"open_issues_count":4,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-17T21:50:07.275Z","etag":null,"topics":["rabbit-hole","rabbitmq-api","rabbitmq-client","rabbitmq-sdk"],"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/Clivern.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"clivern"}},"created_at":"2021-10-20T08:25:02.000Z","updated_at":"2021-11-17T08:49:06.000Z","dependencies_parsed_at":"2023-12-01T21:26:19.561Z","dependency_job_id":"49fd2c0f-0cc1-4582-823c-739b0766feca","html_url":"https://github.com/Clivern/rabbitmq-hole","commit_stats":{"total_commits":12,"total_committers":2,"mean_commits":6.0,"dds":"0.41666666666666663","last_synced_commit":"a732b5bfe405a338b13b4764677d42b8285b2789"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Clivern%2Frabbitmq-hole","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Clivern%2Frabbitmq-hole/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Clivern%2Frabbitmq-hole/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Clivern%2Frabbitmq-hole/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Clivern","download_url":"https://codeload.github.com/Clivern/rabbitmq-hole/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249800301,"owners_count":21327032,"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":["rabbit-hole","rabbitmq-api","rabbitmq-client","rabbitmq-sdk"],"created_at":"2024-11-16T21:16:58.310Z","updated_at":"2025-04-19T20:58:11.115Z","avatar_url":"https://github.com/Clivern.png","language":"PHP","funding_links":["https://github.com/sponsors/clivern"],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003cimg alt=\"rabbitmq-hole Logo\" src=\"/assets/img/gopher.png?v=1.0.0\" width=\"180\" /\u003e\n    \u003ch3 align=\"center\"\u003eRabbitMQ Hole\u003c/h3\u003e\n    \u003cp align=\"center\"\u003eRabbitMQ HTTP API Client In PHP\u003c/p\u003e\n    \u003cp align=\"center\"\u003e\n        \u003ca href=\"https://github.com/clivern/rabbitmq-hole/actions/workflows/php.yml\"\u003e\n            \u003cimg src=\"https://github.com/clivern/rabbitmq-hole/actions/workflows/php.yml/badge.svg\"\u003e\n        \u003c/a\u003e\n        \u003ca href=\"https://packagist.org/packages/clivern/rabbitmq-hole\"\u003e\n            \u003cimg src=\"https://img.shields.io/badge/Version-1.0.0-red.svg\"\u003e\n        \u003c/a\u003e\n        \u003ca href=\"https://github.com/Clivern/rabbitmq-hole/blob/master/LICENSE\"\u003e\n            \u003cimg src=\"https://img.shields.io/badge/LICENSE-MIT-orange.svg\"\u003e\n        \u003c/a\u003e\n    \u003c/p\u003e\n\u003c/p\u003e\n\n\n## Documentation\n\n### Installation:\n\nTo install the package via `composer`, use the following:\n\n```zsh\n$ composer require clivern/rabbitmq-hole\n```\n\nThis command requires you to have `composer` installed globally.\n\n### Usage:\n\nTo use the generic `API` client.\n\n```php\ninclude_once __DIR__ . \"/vendor/autoload.php\";\n\nuse Clivern\\RabbitMQHole\\Client;\nuse Clivern\\RabbitMQHole\\Queues;\n\n\n$client = new Client(\"http://rabbitmq.com:15672\", \"guest\", \"guest\");\n```\n\nTo use the `Queue` client.\n\n```php\n$client = new Client(\"http://rabbitmq.com:15672\", \"guest\", \"guest\");\n$queues = new Queues($client);\n\n# To get queues list\n$queues-\u003egetQueues(); // [{....}]\n```\n\nHere is the full [API documentation for RabbitMQ v3.9.8](https://rawcdn.githack.com/rabbitmq/rabbitmq-server/v3.9.8/deps/rabbitmq_management/priv/www/api/index.html)\n\n\n## Versioning\n\nFor transparency into our release cycle and in striving to maintain backward compatibility, rabbitmq-hole is maintained under the [Semantic Versioning guidelines](https://semver.org/) and release process is predictable and business-friendly.\n\nSee the [Releases section of our GitHub project](https://github.com/clivern/rabbitmq-hole/releases) for changelogs for each release version of rabbitmq-hole. It contains summaries of the most noteworthy changes made in each release.\n\n\n## Bug tracker\n\nIf you have any suggestions, bug reports, or annoyances please report them to our issue tracker at https://github.com/clivern/rabbitmq-hole/issues\n\n\n## Security Issues\n\nIf you discover a security vulnerability within rabbitmq-hole, please send an email to [hello@clivern.com](mailto:hello@clivern.com)\n\n\n## Contributing\n\nWe are an open source, community-driven project so please feel free to join us. see the [contributing guidelines](CONTRIBUTING.md) for more details.\n\n\n## License\n\n© 2021, clivern. Released under [MIT License](https://opensource.org/licenses/mit-license.php).\n\n**rabbitmq-hole** is authored and maintained by [@clivern](http://github.com/clivern).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclivern%2Frabbitmq-hole","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fclivern%2Frabbitmq-hole","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclivern%2Frabbitmq-hole/lists"}