-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
46 lines (46 loc) · 1.1 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
{
"name": "php-kafka/php-avro-schema-generator",
"description": "PHP avro schema generator for subschema",
"keywords": [
"avro",
"avro-schema",
"subschema"
],
"license": "MIT",
"require": {
"ext-json": "*",
"flix-tech/avro-php": "^3.0|^4.0|^5.0",
"symfony/console": "^4.3|^5.1|^6.0",
"nikic/php-parser": "^4.13",
"pimple/pimple": "^3.5"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.19|^3.15",
"infection/infection": "^0.25|^0.27",
"composer/xdebug-handler": "^2.0|^3.0",
"phpstan/phpstan": "^1.2",
"phpunit/phpunit": "^9.3",
"rregeer/phpunit-coverage-check": "^0.3",
"squizlabs/php_codesniffer": "^3.4.2"
},
"bin": [
"bin/avro-cli"
],
"autoload": {
"psr-4": {
"PhpKafka\\PhpAvroSchemaGenerator\\": "src/",
"PhpKafka\\PhpAvroSchemaGenerator\\Example\\": "example/classes/",
"PhpKafka\\PhpAvroSchemaGenerator\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "3.0-dev"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}