-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.28 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.28 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
{
"name": "flix-tech/confluent-schema-registry-api",
"description": "A PHP 7.2+ library to consume the Confluent Schema Registry REST API.",
"minimum-stability": "stable",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Thomas Ploch",
"email": "thomas.ploch@flixbus.com"
}
],
"require": {
"php": "^7.3",
"ext-curl": "*",
"ext-json": "*",
"psr/http-client": "~1.0",
"guzzlehttp/guzzle": "~7.0",
"guzzlehttp/psr7": "^1.7",
"beberlei/assert": "~2.7|~3.0",
"flix-tech/avro-php": "^4.1"
},
"require-dev": {
"phpunit/phpunit": "^8.2.3",
"phpstan/phpstan": "^0.12",
"raphhh/trex-reflection": "~1.0",
"doctrine/cache": "~1.3",
"psr/cache": "^1.0",
"symfony/cache": "^5.1",
"psr/simple-cache": "^1.0"
},
"suggest": {
"doctrine/cache": "If you want to use the DoctrineCacheAdapter",
"psr/cache": "If you want to use the CacheItemPoolAdapter",
"psr/simple-cache": "If you want to use the SimpleCacheAdapter"
},
"autoload": {
"psr-4": {
"FlixTech\\SchemaRegistryApi\\": "src/"
},
"files": [
"src/Requests/Functions.php",
"src/Constants/Constants.php"
]
},
"autoload-dev": {
"psr-4": {
"FlixTech\\SchemaRegistryApi\\Test\\": "test/"
}
}
}