forked from rybakit/phive-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.19 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
{
"name": "rybakit/phive-queue",
"description": "$queue->push('I can be popped off after', '10 minutes');",
"keywords": ["queue", "schedule", "priority", "delayed", "mongodb", "redis", "tarantool", "beanstalk", "sysv", "postgres", "mysql", "sqlite", "pdo"],
"homepage": "https://github.com/rybakit/phive-queue",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Eugene Leonovich",
"email": "gen.work@gmail.com"
}
],
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"pda/pheanstalk": "~3.0"
},
"suggest": {
"ext-mongo": ">=1.3.0",
"ext-phpredis": ">=2.2.3",
"ext-tarantool": "",
"ext-pdo": "",
"ext-pdo_mysql": "",
"ext-pdo_pgsql": "",
"ext-pdo_sqlite": "",
"ext-sysvmsg": "",
"pda/pheanstalk": ">=3.0"
},
"autoload": {
"psr-4": {
"Phive\\Queue\\": "src/"
}
},
"autoload-dev" : {
"psr-4": {
"Phive\\Queue\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}