forked from weiboad/kafka-php
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 943 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
44
45
46
{
"name": "nmred/kafka-php",
"description": "Kafka client for php",
"type": "library",
"keywords": [
"Client",
"Kafka"
],
"homepage": "http://wwww.swanlinux.net",
"license": "BSD-3-Clause",
"require": {
"php": ">=5.3.3"
},
"autoload": {
"psr-0": {
"Kafka\\": "src/",
"KafkaTest\\": "tests/"
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "sebastianbergmann/phpcov",
"version": "1.1.0",
"dist": {
"url": "https://github.com/sebastianbergmann/phpcov/archive/1.1.0.zip",
"type": "zip"
},
"source": {
"url": "https://github.com/sebastianbergmann/phpcov.git",
"type": "git",
"reference": "1.1.0"
},
"bin": [
"phpcov.php"
]
}
}
],
"require-dev": {
"satooshi/php-coveralls": "dev-master",
"sebastianbergmann/phpcov": "1.1.0",
"phpunit/PHPUnit": "3.7.*"
}
}