Files
ops-Logchecker/composer.json
itismadness 661fb57f4e 0.14.3
2025-10-13 23:19:32 +00:00

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.3",
"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
}
}