-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.18 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
{
"name": "wangjichao/swoole-celery",
"type": "library",
"description": "PHP client for Celery task queue base swoole ext by memory-resident, and edit by gjedeer/celery-php",
"keywords": ["celery", "amqp", "task", "python", "queue", "redis", "swoole"],
"homepage": "https://github.com/wjcgithub/swoole-celery",
"support": {
"issues": "https://github.com/wjcgithub/swoole-celery/issues",
"docs": "https://github.com/wjcgithub/swoole-celery/"
},
"license": "BSD-2-Clause",
"authors": [
{
"name": "wangjichao",
"email": "[email protected]",
"homepage": "https://blog.csdn.net/wjc19911118",
"role": "Developer"
}
],
"suggest": {
"php-amqplib/php-amqplib": "Adds support for the php-amqplib, AMQP library for PHP, backend",
"predis/predis": "Adds support for the predis, PHP client library for Redis, backend"
},
"autoload": {
"classmap": ["celery.php"]
},
"extra": {
"branch-alias": {
"dev-master": "2.2-dev"
}
},
"require": {
"php-amqplib/php-amqplib": "^2.6"
},
"require-dev": {
"phpunit/phpunit": "^4.8"
}
}