forked from weiboad/kafka-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (47 loc) · 1.18 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "g4197/kafka-php",
"description": "Kafka client for php",
"type": "library",
"keywords": [
"Client",
"Kafka"
],
"homepage": "http://www.swanlinux.net",
"license": "Apache-2.0",
"require": {
"php": ">=8.0",
"amphp/amp": "^2.0.3",
"lcobucci/clock": "^1.0",
"psr/log": "^2.0|^3.0"
},
"autoload": {
"psr-4": {
"Kafka\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"KafkaTest\\": "tests/",
"KafkaExample\\": "example/"
}
},
"suggest": {
"ext-krb5": "To be able to use the GSSAPI SASL mechanism"
},
"require-dev": {
"mikey179/vfsstream": "^1.6.5",
"maglnet/composer-require-checker": "^4.7",
"phpunit/phpunit": "^10.5",
"rector/rector": "^1.0.3",
"roave/infection-static-analysis-plugin": "^1.34",
"spatie/phpunit-watcher": "^1.23",
"vimeo/psalm": "^5.16"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"composer/package-versions-deprecated": true
}
}
}