forked from jobcloud/php-kafka-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.09 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
{
"name": "jobcloud/php-kafka-lib",
"description": "Jobcloud PHP Kafka library",
"license": [
"MIT"
],
"authors": [
{
"name": "Jobcloud AG",
"homepage": "https://careers.jobcloud.ch/en/our-team/?term=133"
}
],
"keywords": [
"php",
"kafka",
"messaging",
"rdkafka"
],
"require": {
"php": "^8.0",
"ext-rdkafka": "^4.0|^5.0|^6.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"squizlabs/php_codesniffer": "^3.5.4",
"phpstan/phpstan": "^1.8",
"php-mock/php-mock-phpunit": "^2.6",
"kwn/php-rdkafka-stubs": "^2.0.0",
"rregeer/phpunit-coverage-check": "^0.3.1",
"johnkary/phpunit-speedtrap": "^3.1",
"flix-tech/avro-serde-php": "^1.4",
"infection/infection": "^0.26"
},
"autoload": {
"psr-4": {
"Jobcloud\\Kafka\\": "src/"
}
},
"suggest": {
"flix-tech/avro-serde-php": "Is needed for Avro support"
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": false
}
}
}