-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 1017 Bytes
/
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
{
"name": "spotlibs/php-lib",
"description": "PHP library for support spotlibs microservice development",
"keywords": ["spotlibs", "microservice", "php-lib"],
"license": "MIT",
"type": "library",
"require": {
"php": "^7.3|^8.0",
"laravel/lumen-framework": "^8.0",
"jobcloud/php-kafka-lib": "^1.7",
"flix-tech/avro-serde-php": "^1.7"
},
"autoload": {
"psr-4": {
"Spotlibs\\PhpLib\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"squizlabs/php_codesniffer": "*",
"phpunit/phpunit": "9.6.20",
"rregeer/phpunit-coverage-check": "^0.3.1"
},
"scripts": {
"test": "./vendor/bin/phpunit --configuration phpunit.xml --coverage-clover report_coverage.xml && php prepare-coverage-report.php && ./vendor/bin/coverage-check report_coverage.xml 40"
}
}