-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
69 lines (69 loc) · 1.56 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "php-kafka/php-simple-kafka-lib",
"description": "PHP Simple Kafka library",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Jobcloud AG",
"homepage": "https://careers.jobcloud.ch/en/our-team/?term=133"
},
{
"name": "php-kafka",
"homepage": "https://php-kafka.com"
},
{
"name": "Nick",
"email": "[email protected]",
"homepage": "https://github.com/nick-zh"
}
],
"keywords": [
"php",
"kafka",
"consumer",
"producer",
"simple-kafka-client"
],
"require": {
"php": "^7.3|^8.0",
"ext-simple_kafka_client": "^0.1",
"ext-json": "*"
},
"conflict": {
"ext-rdkafka": "*",
"jobcloud/php-kafka-lib": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.5.4",
"phpstan/phpstan": "^0.12",
"php-mock/php-mock-phpunit": "^2.6",
"rregeer/phpunit-coverage-check": "^0.3.1",
"johnkary/phpunit-speedtrap": "^3.1",
"flix-tech/avro-serde-php": "^1.4",
"infection/infection": "^0.22"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"PhpKafka\\": "src/"
}
},
"suggest": {
"flix-tech/avro-serde-php": "Is needed for Avro support"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"support": {
"issues": "https://github.com/php-kafka/php-simple-kafka-lib/issues",
"doc": "https://php-kafka.github.io/php-simple-kafka-client.github.io",
"chat": "https://gitter.im/php-kafka/php-simple-kafka-lib"
}
}