forked from KonstantinCodes/messenger-kafka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 954 Bytes
/
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
{
"name": "datadome/messenger-kafka",
"type": "symfony-bundle",
"description": "Symfony Messenger Kafka Transport",
"keywords": ["kafka", "symfony", "messenger", "transport", "queue", "bundle"],
"license": "MIT",
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"ext-rdkafka": "^5.0||^6.0",
"symfony/config": "^5.0||^6.0",
"symfony/dependency-injection": "^5.0||^6.0",
"symfony/http-kernel": "^5.0||^6.0",
"symfony/messenger": "^5.0||^6.0"
},
"autoload": {
"psr-4": { "Koco\\Kafka\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": { "Koco\\Kafka\\Tests\\": "Tests/" }
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"kwn/php-rdkafka-stubs": "^2.0",
"symfony/phpunit-bridge": "^5.0||^6.0",
"symfony/framework-bundle": "^5.0||^6.0",
"symfony/serializer": "^5.0||^6.0",
"symfony/property-access": "^5.0||^6.0"
}
}