mirror of
https://github.com/Combodo/iTop.git
synced 2026-03-04 00:24:14 +01:00
44 lines
1.2 KiB
JSON
44 lines
1.2 KiB
JSON
{
|
|
"name": "captainhook/secrets",
|
|
"type": "library",
|
|
"description": "Utility classes to detect secrets",
|
|
"keywords": ["secrets", "passwords", "keys", "tokens", "commit-msg", "prepare-commit-msg", "post-merge"],
|
|
"license": "MIT",
|
|
"support": {
|
|
"issues": "https://github.com/captainhook-git/secrets/issues"
|
|
},
|
|
"authors": [
|
|
{
|
|
"name": "Sebastian Feldmann",
|
|
"email": "sf@sebastian-feldmann.info"
|
|
}
|
|
],
|
|
"funding": [
|
|
{
|
|
"type": "github",
|
|
"url": "https://github.com/sponsors/sebastianfeldmann"
|
|
}
|
|
],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"CaptainHook\\Secrets\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"CaptainHook\\Secrets\\": "tests/"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": ">=8.0",
|
|
"ext-mbstring": "*"
|
|
},
|
|
"scripts": {
|
|
"post-install-cmd": "tools/phive install --force-accept-unsigned",
|
|
"tools": "tools/phive install --force-accept-unsigned",
|
|
"test": "tools/phpunit",
|
|
"static": "tools/phpstan analyse",
|
|
"style": "tools/phpcs --standard=psr12 src tests"
|
|
}
|
|
}
|