-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
61 lines (61 loc) · 1.72 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "matrozov/yii2-amqp",
"description": "Amqp extension for Yii2",
"keywords": ["yii2", "yii2-extension", "amqp", "amqp-rpc"],
"homepage": "https://github.com/matrozov/yii2-amqp",
"type": "extension",
"license": "MIT",
"authors": [
{
"name": "Oleg Matrozov",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/matrozov/yii2-amqp/issues",
"source": "https://github.com/matrozov/yii2-amqp"
},
"require": {
"php": ">=7.2",
"yiisoft/yii2": "~2.0.47"
},
"require-dev": {
"ext-json": "*",
"ext-mbstring": "*",
"ext-pcntl": "*",
"ext-redis": "*",
"ext-memcache": "*",
"enqueue/amqp-lib": "^0.10.7",
"enqueue/amqp-ext": "^0.10.7",
"enqueue/amqp-bunny": "^0.10.7",
"yiisoft/yii2-elasticsearch": "~2.0.0",
"yiisoft/yii2-redis": "~2.0.18"
},
"suggest": {
"ext-json": "Need for json encode transfer and logging.",
"ext-mbstring": "Need for debugging.",
"ext-pcntl": "Need for process signals.",
"enqueue/amqp-lib": "Need for amqp over enqueue amqp-lib.",
"enqueue/amqp-bunny": "Need for amqp over enqueue amqp-bunny.",
"enqueue/amqp-ext": "Need for amqp over enqueue amqp-ext."
},
"autoload": {
"psr-4": {
"matrozov\\yii2amqp\\": "src"
}
},
"config": {
"fxp-asset": {
"enabled": false
},
"allow-plugins": {
"yiisoft/yii2-composer": true
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}