-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.21 KB
/
Copy pathcomposer.json
File metadata and controls
52 lines (52 loc) · 1.21 KB
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
{
"name": "phpinnacle/franz",
"type": "library",
"description": "Framework-agnostic PHP client for the Apache Kafka Connect REST API.",
"keywords": [
"phpinnacle",
"kafka",
"kafka-connect",
"connectors",
"api"
],
"homepage": "https://github.com/phpinnacle/franz",
"support": {
"issues": "https://github.com/phpinnacle/franz/issues",
"source": "https://github.com/phpinnacle/franz"
},
"license": "MIT",
"authors": [
{
"name": "PHPinnacle Devs",
"email": "dev@phpinnacle.edu.pl",
"role": "Developer"
}
],
"require": {
"php": "^8.4",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.1",
"psr/http-message": "^2.0"
},
"require-dev": {
"guzzlehttp/psr7": "^2.7",
"phpunit/phpunit": "^12.0"
},
"autoload": {
"psr-4": {
"PHPinnacle\\Franz\\": "src/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "phpunit --no-coverage"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"prefer-stable": true
}