-
-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathcomposer.json
54 lines (54 loc) · 1.54 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": "mateusjunges/laravel-kafka",
"description": "A kafka driver for laravel",
"type": "library",
"require": {
"php": "^8.2|^8.3|^8.4",
"ext-rdkafka": "^6.0",
"monolog/monolog": "^3",
"mateusjunges/avro-serde-php": "^3.0",
"illuminate/support": "^10.0|^11.0",
"illuminate/contracts": "^10.0|^11.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"orchestra/testbench": "^7.16|^8.0",
"predis/predis": "^1",
"friendsofphp/php-cs-fixer": "^3.64",
"rector/rector": "^0.19.8"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Junges\\Kafka\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Junges\\Kafka\\Tests\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "mateusjunges",
"email": "mateus@junges.dev",
"role": "Senior Software Engineer"
}
],
"scripts": {
"test": "vendor/bin/phpunit tests",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes --config=.php_cs.dist.php"
},
"extra": {
"laravel": {
"providers": [
"Junges\\Kafka\\Providers\\LaravelKafkaServiceProvider"
]
}
},
"suggest": {
"ext-pcntl": "Required to enable all features of the kafka consumer",
"kwn/php-rdkafka-stubs": "Useful for providing IDE autocompletion and static analysis when working with Kafka, version ^2.2.1."
}
}