forked from gjedeer/celery-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 991 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 991 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
{
"name": "massivescale/celery-php",
"type": "library",
"description": "PHP client for Celery task queue",
"keywords": ["celery", "amqp", "task", "cron", "queue", "redis", "python"],
"homepage": "https://github.com/gjedeer/celery-php/",
"support": {
"issues": "https://github.com/gjedeer/celery-php/issues",
"docs": "https://github.com/gjedeer/celery-php/"
},
"license": "BSD-2-Clause",
"authors": [
{
"name": "GDR!",
"email": "info@massivescale.net",
"homepage": "http://massivescale.net/",
"role": "Developer"
}
],
"suggest": {
"videlalvaro/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.1-dev"
}
}
}