-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.16 KB
/
composer.json
File metadata and controls
38 lines (38 loc) · 1.16 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
{
"name": "crysalead/queue",
"description": "Simple queue consumer framework that supports message dispatching.",
"license": "MIT",
"suggest": {
"aws/aws-sdk-php": "To add support for AWS Simple Queue Service (SQS).",
"google/cloud-pubsub": "To add support for Google Cloud Pubsub.",
"iron-io/iron_mq": "To add support for IronMQ Queue.",
"microsoft/azure-storage-queue": "To add support for Microsoft Azure Storage Queue.",
"pda/pheanstalk": "To add support for Beanstalkd queue.",
"predis/predis": "To add support for Redis based queue and pub/sub functionality."
},
"require": {
"php": ">=8.3",
"ext-json": "*"
},
"require-dev": {
"aws/aws-sdk-php": "^3",
"google/cloud-pubsub": "^2",
"kahlan/kahlan": "^6",
"microsoft/azure-storage-queue": "^1.3",
"pda/pheanstalk": "^6",
"predis/predis": "^2"
},
"autoload": {
"psr-4": {
"Lead\\Queue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lead\\Queue\\Spec\\": "spec/"
}
},
"config": {
"bin-dir": "bin"
}
}