forked from weiboad/kafka-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.36 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": "adaddad/kafka-php",
"description": "Kafka client for php",
"type": "library",
"keywords": [
"Client",
"Kafka"
],
"homepage": "http://www.swanlinux.net",
"license": "BSD-3-Clause",
"config": {
"platform": {
"php": "7.1.12"
},
"preferred-install": "dist",
"sort-packages": true
},
"require": {
"php": "^7.1",
"amphp/amp": "^2.0.3",
"lcobucci/clock": "^1.0",
"psr/log": "^1.0"
},
"autoload": {
"psr-4": {
"Kafka\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"KafkaTest\\": "tests/",
"KafkaExample\\": "example/"
}
},
"suggest": {
"ext-krb5": "To be able to ues the GSSAPI SASL mechanism"
},
"require-dev": {
"doctrine/coding-standard": "^2.1",
"infection/infection": "^0.7",
"kmelia/monolog-stdout-handler": "^1.2",
"mikey179/vfsstream": "^1.6.5",
"monolog/monolog": "^1.23",
"phpstan/phpstan": "^0.9",
"phpstan/phpstan-phpunit": "^0.9",
"phpstan/phpstan-strict-rules": "^0.9",
"phpunit/phpcov": "^4.0",
"phpunit/phpunit": "^6.5",
"satooshi/php-coveralls": "2.0.0",
"slevomat/coding-standard": "^4.1",
"squizlabs/php_codesniffer": "^3.2"
}
}