forked from weiboad/kafka-php
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
43 lines (43 loc) · 1018 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
34
35
36
37
38
39
40
41
42
43
{
"name": "noname007/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.0"
},
"preferred-install": "dist",
"sort-packages": true
},
"require": {
"php": ">=7.0",
"amphp/amp": "^v1.2.2",
"psr/log": "^1.0"
},
"autoload": {
"psr-4": {
"Kafka\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"KafkaTest\\": "tests/",
"KafkaExample\\": "example/"
}
},
"require-dev": {
"kmelia/monolog-stdout-handler": "^1.2",
"monolog/monolog": "^1.23",
"phpunit/phpcov": "^3.1.0",
"phpunit/phpunit": "~5.7.0",
"satooshi/php-coveralls": "2.0.0",
"squizlabs/php_codesniffer": "^3.2",
"mikey179/vfsstream": "^1.6.5"
}
}