-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.26 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
{
"name": "jobcloud/php-kafka-schema-registry-client",
"license": "MIT",
"description": "Kafka Schema Registry API Client",
"keywords": ["kafka", "schema", "registry", "php"],
"autoload": {
"psr-4": {
"Jobcloud\\Kafka\\SchemaRegistryClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jobcloud\\Kafka\\SchemaRegistryClient\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "JobCloud AG",
"homepage": "https://careers.jobcloud.ch/en/our-team/?term=133"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"psr/http-client": "^1.0.1",
"psr/http-message": "^1.0.1 || ^2.0.0"
},
"require-dev": {
"infection/infection": "^0.26.6",
"kriswallsmith/buzz": "^1.2.1",
"nyholm/psr7": "^1.5.1",
"php-mock/php-mock-phpunit": "^2.6.0",
"phpstan/phpstan": "^1.7.15",
"phpunit/phpunit": "^9.5.21",
"pimple/pimple": "^3.5.0",
"rregeer/phpunit-coverage-check": "^0.3.1",
"squizlabs/php_codesniffer": "^3.7.1"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
}
}