-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.41 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
55
56
57
58
59
60
{
"name": "php-kafka/avsc-json-converter",
"description": "Library that converts Avsc to JSON schema",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "php-kafka",
"homepage": "https://php-kafka.com"
},
{
"name": "Nick",
"email": "[email protected]",
"homepage": "https://github.com/nick-zh"
}
],
"keywords": [
"avsc",
"json",
"schema",
"converter"
],
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
},
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"symfony/console": "^5.3",
"pimple/pimple": "^3.5"
},
"require-dev": {
"infection/infection": "^0.25.3",
"johnkary/phpunit-speedtrap": "^4.0",
"phpstan/phpstan": "^1.2",
"phpunit/phpunit": "^9.5",
"rregeer/phpunit-coverage-check": "^0.3.1",
"squizlabs/php_codesniffer": "^3.6"
},
"bin": [
"bin/avsc-to-json"
],
"autoload": {
"psr-4": {
"PhpKafka\\AvscJsonConverter\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-main": "1.0-dev"
}
},
"support": {
"issues": "https://github.com/php-kafka/avsc-json-converter/issues"
}
}