-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
54 lines (54 loc) · 1.71 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
{
"name": "grongor/kafka-rest-client",
"description": "Client for Confluent REST Proxy of Apache Kafka",
"type": "library",
"license": "MIT",
"keywords": ["kafka", "confluent", "proxy", "rest", "client", "librdkafka", "rdkafka"],
"config": {
"sort-packages": true
},
"require": {
"php": "^7.2|^8.0",
"beberlei/assert": "^3.2",
"bentools/iterable-functions": "^2.0",
"jms/serializer": "^3.2",
"lcobucci/clock": "^3.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0.1",
"psr/log": "^3.0",
"teapot/status-code": "^2.0",
"thecodingmachine/safe": "^2.0.0"
},
"require-dev": {
"cdn77/coding-standard": "^7.0",
"guzzlehttp/psr7": "^2.0",
"http-interop/http-factory-guzzle": "^1.0",
"jakub-onderka/php-parallel-lint": "^1.0.0",
"mockery/mockery": "^1.2.3",
"php-http/message": "^1.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.0.0",
"phpstan/phpstan-beberlei-assert": "^1.0.0",
"phpstan/phpstan-mockery": "^1.0.0",
"phpstan/phpstan-phpunit": "^1.0.0",
"phpstan/phpstan-strict-rules": "^1.0.0",
"phpunit/phpunit": "^9.0",
"roave/security-advisories": "dev-master",
"slevomat/coding-standard": "dev-master as 5.0.4",
"thecodingmachine/phpstan-safe-rule": "^1.0.0"
},
"conflict": {
"doctrine/annotations": "<1.7.0"
},
"autoload": {
"psr-4": {
"Grongor\\KafkaRest\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Grongor\\KafkaRest\\Tests\\": "tests/"
}
}
}