mirror of
https://github.com/OPSnet/Logchecker.git
synced 2026-01-16 18:04:27 -05:00
47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
{
|
|
"name": "orpheusnet/logchecker",
|
|
"description": "Logchecker for validating logs generated from supported ripping programs (like EAC and XLD)",
|
|
"version": "0.9.2",
|
|
"license": "Unlicense",
|
|
"type": "library",
|
|
"authors": [
|
|
{
|
|
"name": "Orpheus",
|
|
"email": "no-reply@orpheus.network"
|
|
}
|
|
],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"OrpheusNET\\Logchecker\\": "src/"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": ">=7.2",
|
|
"ext-mbstring": "*",
|
|
"symfony/console": "^3.4 | ^4.0 | ^5.0",
|
|
"symfony/yaml": "^3.4 | ^4.0 | ^5.0",
|
|
"symfony/process": "^3.4 | ^4.0 | ^5.0"
|
|
},
|
|
"bin": ["bin/logchecker"],
|
|
"require-dev": {
|
|
"phpstan/phpstan": "^0.12",
|
|
"phpunit/phpunit": "^8.5",
|
|
"squizlabs/php_codesniffer": "^3.5",
|
|
"brainmaestro/composer-git-hooks": "^2.8"
|
|
},
|
|
"scripts": {
|
|
"test": "phpunit -v",
|
|
"lint": "phpcs",
|
|
"lint:fix": "phpcbf",
|
|
"static-analysis": "phpstan analyze src/"
|
|
},
|
|
"extra": {
|
|
"hooks": {
|
|
"pre-commit": [
|
|
"composer run lint:fix",
|
|
"composer run static-analysis"
|
|
]
|
|
}
|
|
}
|
|
}
|