| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- {
- "name": "hyperf/amqp",
- "description": "A amqplib for hyperf.",
- "license": "MIT",
- "keywords": [
- "php",
- "hyperf",
- "amqp"
- ],
- "homepage": "https://hyperf.io",
- "support": {
- "issues": "https://github.com/hyperf/hyperf/issues",
- "source": "https://github.com/hyperf/hyperf",
- "docs": "https://hyperf.wiki",
- "pull-request": "https://github.com/hyperf/hyperf/pulls"
- },
- "require": {
- "php": ">=8.1",
- "doctrine/instantiator": "^1.2.0",
- "hyperf/codec": "~3.1.0",
- "hyperf/contract": "~3.1.0",
- "hyperf/coroutine": "~3.1.0",
- "hyperf/pool": "~3.1.0",
- "hyperf/process": "~3.1.0",
- "hyperf/support": "~3.1.0",
- "hyperf/utils": "~3.1.0",
- "php-amqplib/php-amqplib": "^3.5",
- "psr/container": "^1.0 || ^2.0",
- "psr/event-dispatcher": "^1.0",
- "psr/log": "^1.0 || ^2.0 || ^3.0"
- },
- "suggest": {
- "hyperf/di": "Required to use annotations.",
- "hyperf/event": "Declare queue and start consumers automatically."
- },
- "autoload": {
- "psr-4": {
- "Hyperf\\Amqp\\": "src/"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "HyperfTest\\Amqp\\": "tests/"
- }
- },
- "config": {
- "sort-packages": true
- },
- "extra": {
- "branch-alias": {
- "dev-master": "3.1-dev"
- },
- "hyperf": {
- "config": "Hyperf\\Amqp\\ConfigProvider"
- }
- }
- }
|