mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-18 04:44:53 +08:00
45 lines
1.3 KiB
JSON
45 lines
1.3 KiB
JSON
{
|
|
"pre-push": {
|
|
"enabled": true,
|
|
"actions": [
|
|
{
|
|
"action": ".\\vendor\\bin\\phpstan analyse --memory-limit 300M"
|
|
}
|
|
]
|
|
},
|
|
"pre-commit": {
|
|
"enabled": true,
|
|
"actions": [
|
|
{
|
|
"action": ".\\vendor\\bin\\php-cs-fixer 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"
|
|
]
|
|
]
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|