forked from gjedeer/celery-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.38 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
47
48
49
{
"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": "[email protected]",
"homepage": "http://massivescale.net/",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"ext-amqp": "*",
"php-amqplib/php-amqplib": "*",
"phpunit/phpunit": "<6.0.0",
"predis/predis": "*"
},
"suggest": {
"ext-amqp": "Adds support for the AMQP extension for PHP backend",
"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": {
"psr-4": {
"Celery\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Celery\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
}
}