-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 736 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 736 Bytes
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
{
"name": "johnnylei/yii-redis-queue",
"description": "Yii2 redis queue based on pub/sub",
"keywords": [
"yii2",
"redis",
"queue"
],
"homepage": "https://github.com/johnnylei/redis-queue.git",
"type": "yii2-extension",
"license": "MIT",
"support": {
"source": "https://github.com/johnnylei/redis-queue.git"
},
"authors": [
{
"name": "johnny Lei",
"email": "leiyuqing_jing@163.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": ">=2.0.6"
},
"autoload": {
"psr-4": {
"johnnylei\\redis_queue\\": ""
}
},
"config": {
"process-timeout": 1800
}
}