-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
41 lines (41 loc) · 1.15 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
{
"name": "jobcloud/php-console-kafka-schema-registry",
"description": "Console commands for the Kafka schema registry",
"license": [
"MIT"
],
"authors": [
{
"name": "Jobcloud AG",
"homepage": "https://careers.jobcloud.ch/en/our-team/?term=133"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"flix-tech/avro-php": "^3.0 || ^4.0 || ^5.0",
"jobcloud/php-kafka-schema-registry-client": "^2.0",
"kriswallsmith/buzz": "^1.2",
"nyholm/psr7": "^1.4",
"pimple/pimple": "^3.2",
"symfony/console": "^5.1 || ^6.0 || ^7.0"
},
"require-dev": {
"infection/infection": "^0.26 || ^0.29",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5",
"rregeer/phpunit-coverage-check": "^0.3.1",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"Jobcloud\\SchemaConsole\\": "src/",
"Jobcloud\\SchemaConsole\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": false
}
}
}