-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 2.08 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 2.08 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "nimbly/syndicate",
"description": "A powerful queue and pubsub message publisher and consumer framework.",
"keywords": ["php", "event", "queue", "pubsub", "framework"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Brent Scheffler",
"email": "brent@brentscheffler.com"
}
],
"require": {
"php": "^8.2",
"psr/container": "^1.0|^2.0",
"psr/http-client": "^1.0",
"psr/log": "^2.0|^3.0",
"nimbly/resolve": "^2.0",
"nimbly/capsule": "^3.0",
"nimbly/shuttle": "^1.1",
"softcreatr/jsonpath": "^0.9.1",
"opis/json-schema": "^2.4"
},
"require-dev": {
"vimeo/psalm": "^6.0",
"phpunit/phpunit": "^10.0",
"symfony/var-dumper": "^6.0",
"mockery/mockery": "^1.6",
"nimbly/carton": "^2.0",
"monolog/monolog": "^3.8",
"ext-pdo": "*",
"ext-gearman": "*",
"pda/pheanstalk": "^5.0",
"predis/predis": "^2.3",
"google/cloud-pubsub": "^2.8",
"microsoft/azure-storage-queue": "^1.3",
"iron-io/iron_mq": "^4.0",
"php-mqtt/client": "^2.2",
"php-amqplib/php-amqplib": "^3.7",
"aws/aws-sdk-php": "^3.336",
"segmentio/analytics-php": "^3.8"
},
"suggest": {
"ext-pcntl": "Enables graceful shutdown of consumers.",
"ext-pdo": "Required for DB based adapters.",
"ext-gearman": "Required for Gearman support.",
"pda/pheanstalk": "Required for Beanstalkd support.",
"predis/predis": "Required for Redis support.",
"google/cloud-pubsub": "Required for Google PubSub support.",
"microsoft/azure-storage-queue": "Required for Azure support.",
"iron-io/iron_mq": "Required for IronMQ support.",
"php-mqtt/client": "Required for MQTT support.",
"php-amqplib/php-amqplib": "Required for RabbitMQ support.",
"aws/aws-sdk-php": "Required for AWS SNS and SQS support."
},
"autoload": {
"psr-4": {
"Nimbly\\Syndicate\\": "src/",
"Nimbly\\Syndicate\\Examples\\": "examples/"
}
},
"autoload-dev": {
"psr-4": {
"Nimbly\\Syndicate\\Tests\\": "tests/"
}
}
}