-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.83 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.83 KB
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
{
"name": "mallabee/queue",
"description": "Framework agnostic background task queue management for Beanstalkd, SQS, Redis. Easy to use in pure PHP, Symfony, Laravel, Yii2 projects. Based on illuminate/queue (Laravel Queues).",
"license": "MIT",
"homepage": "https://www.mallabee.com",
"require": {
"php": "^7.1",
"ext-json": "*",
"ext-mbstring": "*",
"nesbot/carbon": "^1.26.3",
"psr/container": "^1.0",
"psr/log": "^1.0"
},
"require-dev": {
"ext-pcntl": "*",
"ext-posix": "*",
"pda/pheanstalk": "^3.2",
"aws/aws-sdk-php": "^3.0",
"illuminate/redis": "5.7.27",
"predis/predis": "^1.1",
"league/event": "^2.1",
"jms/serializer": "^1.13"
},
"autoload": {
"psr-4": {
"Mallabee\\Queue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mallabee\\": "example/"
}
},
"suggest": {
"ext-pcntl": "Required to use all features of the queue worker.",
"ext-posix": "Required to use all features of the queue worker.",
"aws/aws-sdk-php": "Required to use the SQS queue driver (^3.0).",
"illuminate/redis": "Required to use the Redis queue driver (^5.7).",
"predis/predis": "Required to use the Redis queue driver (^1.1).",
"pda/pheanstalk": "Required to use the Beanstalk queue driver (^3.0).",
"league/event": "For handling worker events, catching exceptions, interacting with queues, etc (^2.1)..",
"jms/serializer": "For encoding/decoding jobs from string to object (^1.13)."
},
"config": {
"sort-packages": true
},
"authors": [
{
"name": "Din Bracha",
"email": "dinbrca@gmail.com",
"homepage": "https://www.mallabee.com"
}
]
}