-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.24 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
{
"name": "simpod/kafka",
"description": "PHP Kafka boilerplate wrapper around RdKafka",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Simon Podlipsky",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"require": {
"php": "^8.2",
"ext-pcntl": "*",
"ext-rdkafka": "^6",
"psr/log": "^3",
"thecodingmachine/safe": "^2.2"
},
"require-dev": {
"doctrine/coding-standard": "^12.0",
"infection/infection": "^0.29.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "1.12.10",
"phpstan/phpstan-phpunit": "1.4.1",
"phpstan/phpstan-strict-rules": "1.6.1",
"phpunit/phpunit": "^11.0",
"thecodingmachine/phpstan-safe-rule": "^1.0"
},
"autoload": {
"psr-4": {
"SimPod\\Kafka\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SimPod\\Kafka\\Tests\\": "tests/"
}
}
}