77 lines
2.2 KiB
Markdown
77 lines
2.2 KiB
Markdown
<!--
|
|
=========================================================================
|
|
Copyright (C) 2025 Moko Consulting <hello@mokoconsulting.tech>
|
|
|
|
This file is part of a Moko Consulting project.
|
|
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see https://www.gnu.org/licenses/ .
|
|
=========================================================================
|
|
FILE INFORMATION
|
|
DEFGROUP: Joomla
|
|
INGROUP: Moko-Cassiopeia
|
|
PATH: CONTRIBUTING.md
|
|
VERSION: 02.01.05-dev
|
|
BRIEF: Contribution guidelines for the Moko-Cassiopeia project
|
|
=========================================================================
|
|
-->
|
|
|
|
# Contributing Guidelines
|
|
|
|
Thank you for considering contributing to this project! We welcome contributions from the community and are grateful for your support.
|
|
|
|
## 📋 How to Contribute
|
|
|
|
1. **Fork the repository**
|
|
|
|
- Click the "Fork" button at the top of the repository page.
|
|
|
|
2. **Create a branch**
|
|
|
|
```bash
|
|
git checkout -b feature/your-feature-name
|
|
```
|
|
|
|
3. **Make your changes**
|
|
|
|
- Follow the existing code style.
|
|
- Write clear commit messages.
|
|
|
|
4. **Test your changes**
|
|
|
|
- Ensure all tests pass and new code is covered.
|
|
|
|
5. **Submit a pull request (PR)**
|
|
|
|
- Push your branch to your fork.
|
|
- Open a PR against the `main` branch.
|
|
|
|
---
|
|
|
|
## 🛠 Development Guidelines
|
|
|
|
- Use `.editorconfig` for consistent formatting.
|
|
- Keep commits focused — one feature/fix per commit.
|
|
- Write documentation for new features.
|
|
|
|
## 📜 Code of Conduct
|
|
|
|
By participating in this project, you agree to follow our [Code of Conduct](CODE_OF_CONDUCT.md).
|
|
|
|
---
|
|
|
|
© 2025 Moko Consulting. Licensed under the GNU General Public License v3.0 or later (GPL-3.0-or-later).
|
|
|