mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-17 20:34:51 +08:00
45 lines
1.2 KiB
JSON
45 lines
1.2 KiB
JSON
{
|
|
"pre-push": {
|
|
"enabled": true,
|
|
"actions": [
|
|
{
|
|
"action": "composer analyse"
|
|
}
|
|
]
|
|
},
|
|
"pre-commit": {
|
|
"enabled": true,
|
|
"actions": [
|
|
{
|
|
"action": "composer cs-fix -- --config=.php-cs-fixer.php --dry-run --diff {$STAGED_FILES|of-type:php}",
|
|
"conditions": [
|
|
{
|
|
"exec": "\\CaptainHook\\App\\Hook\\Condition\\FileStaged\\OfType",
|
|
"args": ["php"]
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"post-change": {
|
|
"enabled": true,
|
|
"actions": [
|
|
{
|
|
"action": "composer install",
|
|
"options": [],
|
|
"conditions": [
|
|
{
|
|
"exec": "\\CaptainHook\\App\\Hook\\Condition\\FileChanged\\Any",
|
|
"args": [
|
|
[
|
|
"composer.json",
|
|
"composer.lock"
|
|
]
|
|
]
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|