-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 863 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
{
"name": "anktx/kafka-client",
"type": "library",
"description": "PHP wrapper for RdKafka",
"keywords": [
"kafka",
"redpanda",
"client"
],
"license": "BSD-3-Clause",
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"ext-rdkafka": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.59",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"Anktx\\Kafka\\Client\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Anktx\\Kafka\\Client\\Tests\\": "tests"
}
},
"scripts": {
"analyse": "phpstan analyse -v -l 6 ./src ./tests",
"cs-fix": "php-cs-fixer fix -v --diff",
"tests": "phpunit tests",
"infection": "infection --show-mutations"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
}
}