singleloginsystem/captainhook.json
= 5eca6d3602 Feat: add confirmation modal component and Livewire support
- Introduced `Confirmation` trait for reusable confirmation modal logic in Livewire components.
- Added `ConfirmationModal` Livewire component for handling confirmation prompts with customizable title, subtitle, description, and styling.
- Updated `captainhook.json` to increase `subjectLength` limit.
- Integrated confirmation modal in the sidebar layout with `<livewire:confirmation-modal/>`.
2026-05-22 11:37:31 +00:00

29 lines
624 B
JSON

{
"commit-msg": {
"enabled": true,
"actions": [
{
"action": "\\CaptainHook\\App\\Hook\\Message\\Action\\Beams",
"options": {
"subjectLength": 100,
"bodyLineLength": 300
}
}
]
},
"pre-commit": {
"enabled": true,
"actions": [
{
"action": "composer lint"
},
{
"action": "composer check"
},
{
"action": "composer test:arch"
}
]
}
}