-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
48 lines (48 loc) · 1.28 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
{
"name": "lcobucci/kafka",
"description": "PHP client for Kafka",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Luís Cobucci",
"email": "[email protected]"
}
],
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
}
},
"require": {
"php-64bit": "^8.1",
"ext-pcntl": "*",
"psr/log": "^3.0",
"react/socket": "^1.13.0"
},
"require-dev": {
"infection/infection": "^0.27",
"lcobucci/coding-standard": "^11.0.0",
"monolog/monolog": "^3.4.0",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan": "^1.10.24",
"phpstan/phpstan-deprecation-rules": "^1.1.3",
"phpstan/phpstan-phpunit": "^1.3.13",
"phpstan/phpstan-strict-rules": "^1.5.1",
"phpunit/phpunit": "^9.6.9"
},
"autoload": {
"psr-4": {
"Lcobucci\\Kafka\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lcobucci\\Kafka\\Test\\": "tests/"
}
}
}