-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 944 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 944 Bytes
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": "siberfx/apache-kafka",
"description": "Apache Kafka Service Helper",
"keywords": [
"laravel 11.x",
"laravel 12.x",
"laravel 13.x",
"apache kafka",
"kafka service helper"
],
"homepage": "https://github.com/siberfx/apache-kafka",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Selim Görmüş",
"email": "info@siberfx.com",
"role": "Fullstack Software Engineer"
}
],
"require": {
"php": "^8.4",
"laravel/framework": "^11.0 | ^12.0| ^13.0"
},
"minimum-stability": "dev",
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Siberfx\\Kafka\\KafkaServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Siberfx\\Kafka\\": "src"
}
}
}