-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
34 lines (34 loc) · 943 Bytes
/
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
{
"name": "zircote/rhubarb",
"description": "A PHP Celery Client Implementation",
"homepage": "https://github.com/zircote/Rhubarb",
"type": "library",
"license" : "Apache-2.0",
"keywords": ["Celery", "Job Queue", "Asynchronous", "work flow", "task schedule"],
"support": {
"issues": "https://github.com/zircote/Rhubarb/issues"
},
"authors": [
{
"name": "Robert Allen",
"email": "[email protected]"
}
],
"require": {
"rhumsaa/uuid": "~2.1"
},
"require-dev":{
"phpunit/phpunit": "~3.7.19"
},
"suggest": {
"zircote/amqp": "for php-amqp support and/or TLS AMQP support",
"ext-amqp": "for rabbitmq-c/pecl-amqp support",
"predis/predis": "for redis broker support"
},
"autoload":{
"psr-0":{
"Rhubarb":"library",
"RhubarbTests":"tests/library"
}
}
}