mirror of
https://github.com/OPSnet/Logchecker.git
synced 2026-01-16 18:04:27 -05:00
53 lines
1.3 KiB
JSON
53 lines
1.3 KiB
JSON
{
|
|
"name": "orpheusnet/logchecker",
|
|
"description": "Logchecker for validating logs generated from supported ripping programs (like EAC and XLD)",
|
|
"version": "0.14.0",
|
|
"license": "Unlicense",
|
|
"type": "library",
|
|
"authors": [
|
|
{
|
|
"name": "Orpheus",
|
|
"email": "no-reply@orpheus.network"
|
|
}
|
|
],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"OrpheusNET\\Logchecker\\": "src/"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": "^8.1",
|
|
"ext-iconv": "*",
|
|
"ext-mbstring": "*",
|
|
"symfony/console": "^6.0|^7.0",
|
|
"symfony/process": "^6.0|^7.0",
|
|
"symfony/yaml": "^6.0|^7.0"
|
|
},
|
|
"bin": ["bin/logchecker"],
|
|
"require-dev": {
|
|
"phpstan/phpstan": "^1.12",
|
|
"phpunit/phpunit": "^10.5",
|
|
"squizlabs/php_codesniffer": "^3.8"
|
|
},
|
|
"scripts": {
|
|
"test": "phpunit",
|
|
"lint": "phpcs",
|
|
"lint:fix": "phpcbf",
|
|
"static-analysis": "phpstan analyze src/ tests/"
|
|
},
|
|
"extra": {
|
|
"hooks": {
|
|
"pre-commit": [
|
|
"composer run lint:fix",
|
|
"composer run static-analysis"
|
|
]
|
|
}
|
|
},
|
|
"config": {
|
|
"platform": {
|
|
"php": "8.1"
|
|
},
|
|
"sort-packages": true
|
|
}
|
|
}
|