b82c1f8a24
Full-site backup and restore for Joomla with three sub-extensions: - com_mokobackup: Admin component with backup engine, profiles, and records - plg_system_mokobackup: Auto-cleanup of expired backups - plg_webservices_mokobackup: REST API wire-compatible with mcp_mokobackup Backup engine supports full/database/files modes with step-based execution, file/directory/table exclusion filters, and CLI script for cron use. Authored-by: Moko Consulting Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
35 lines
1006 B
Markdown
35 lines
1006 B
Markdown
# Contributing to MokoJoomBackup
|
|
|
|
Thank you for your interest in contributing to MokoJoomBackup.
|
|
|
|
## Getting Started
|
|
|
|
1. Fork the repository on Gitea
|
|
2. Create a feature branch from `dev` (`feature/your-feature`)
|
|
3. Make your changes following the coding standards below
|
|
4. Submit a pull request targeting `dev`
|
|
|
|
## Branch Strategy
|
|
|
|
- `main` — stable releases only
|
|
- `dev` — active development
|
|
- `feature/*` — new features (target `dev`)
|
|
- `fix/*` — bug fixes (target `dev`)
|
|
- `hotfix/*` — urgent fixes (target `dev` or `main`)
|
|
|
|
## Coding Standards
|
|
|
|
- PHP 8.1+ required
|
|
- Follow Joomla coding standards
|
|
- SPDX license headers on all PHP files
|
|
- Use `SubscriberInterface` for event subscription
|
|
- Use `bind() -> check() -> store()` for Table operations
|
|
|
|
## Reporting Issues
|
|
|
|
Report bugs and feature requests via [Issues](https://git.mokoconsulting.tech/MokoConsulting/MokoJoomBackup/issues).
|
|
|
|
## License
|
|
|
|
By contributing, you agree that your contributions will be licensed under GPL-3.0-or-later.
|