-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 2.53 KB
/
Copy pathcomposer.json
File metadata and controls
65 lines (65 loc) · 2.53 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
{
"name": "babelqueue/php-sdk",
"description": "Framework-agnostic core for BabelQueue: the canonical polyglot queue envelope codec, contracts and dead-letter helpers. Framework adapters (Laravel, Symfony, ...) are built on top.",
"keywords": [
"queue",
"polyglot",
"microservices",
"json",
"envelope"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Muhammet \u015eafak",
"email": "info@muhammetsafak.com.tr"
}
],
"homepage": "https://babelqueue.com",
"support": {
"issues": "https://github.com/BabelQueue/php-sdk/issues",
"source": "https://github.com/BabelQueue/php-sdk"
},
"require": {
"php": "^8.2",
"ext-json": "*"
},
"require-dev": {
"mockery/mockery": "^1.6",
"php-amqplib/php-amqplib": "^3.5",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^10.5|^11.0",
"predis/predis": "^2.2"
},
"suggest": {
"ext-redis": "Use the phpredis extension with your own one-method Transport, or install predis/predis for the bundled RedisTransport.",
"php-amqplib/php-amqplib": "For the framework-less RabbitMQ transport (BabelQueue\\Transport\\AmqpTransport).",
"predis/predis": "Pure-PHP Redis client for the framework-less Redis transport (BabelQueue\\Transport\\RedisTransport).",
"aws/aws-sdk-php": "For the framework-less Amazon SQS transport (BabelQueue\\Transport\\SqsTransport).",
"stomp-php/stomp-php": "To produce to Apache ActiveMQ Artemis over STOMP (the \u00a77 PHP path) via StompTransport.",
"ext-rdkafka": "To produce to Apache Kafka (the \u00a76 PHP path) via KafkaTransport (the php-rdkafka PECL extension over librdkafka; opt-in, relaxes GR-7 for Kafka \u2014 ADR-0019).",
"textalk/websocket": "Pure-PHP WebSocket client to produce to Apache Pulsar (the \u00a75 PHP path) via PulsarTransport over Pulsar's WebSocket API (GR-7 intact \u2014 ADR-0020)."
},
"autoload": {
"psr-4": {
"BabelQueue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BabelQueue\\Tests\\": "tests/"
}
},
"scripts": {
"analyse": "phpstan analyse",
"test": "phpunit",
"test:coverage": "phpunit --coverage-clover=coverage.xml",
"coverage:check": "php bin/check-coverage.php coverage.xml 90"
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}