forked from gjedeer/celery-php
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
57 lines (57 loc) · 1.26 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
50
51
52
53
54
55
56
57
{
"name": "libretime/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": ">=7.0"
},
"require-dev": {
"ext-amqp": "*",
"php-amqplib/php-amqplib": ">=3.0",
"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-main": "3.0-dev"
}
}
}