# Contributing to iTop You want to contribute to iTop? Many thanks to you! 🎉 👍 Here are some guidelines that will help us integrate your work! ## Contributions ### Subjects You are welcome to create pull requests on any of those subjects: * 🐛 bug fix * 🌐 translation / i18n / l10n * 🚸 enhancement But before creating a PR, please [create a corresponding issue][itop-issues] for review. We should review within two weeks, and get back to you to indicate if we're interested in your proposal or not. If you don't create an issue, you won't know if we're interested in your contribution, and you may spend time coding something that won't be accepted. If you ever want to begin implementation, do so in a fork, and add a link to the corresponding commits in the issue. For all **security related subjects**, please see our [security policy](SECURITY.md). All **datamodel modification** should be done in an extension. Beware that such change would impact all existing customers, and could prevent them from upgrading! Combodo has a long experience of datamodel changes: they are very disruptive! This is why we avoid them in iTop core, especially the changes on existing objects/fields. If you have an idea you're sure would benefit to all of iTop users, you may [create a corresponding issue][itop-issues] to submit it, but be warned that there are lots of good reasons to refuse such changes. ### 📄 License and copyright iTop is distributed under the AGPL-3.0 license (see the [license.txt] file). The iTop repository is divided in three parts: iTop (mainly PHP/JS/XML sources and dictionaries), images, and third-party libraries. Combodo has the copyright on most of the source files in the iTop part of the repository: please do not modify the existing file copyrights. Anyhow, you are encouraged to signal your contribution by the mean of `@author` annotations. If you want to use another license or keep the code ownership (copyright), you may [create an extension][wiki new ext]. [license.txt]: https://github.com/Combodo/iTop/blob/develop/license.txt [itop-issues]: https://github.com/Combodo/iTop/issues [wiki new ext]: https://www.itophub.io/wiki/page?id=latest%3Acustomization%3Astart#by_writing_your_own_extension ## 🔀 iTop branch model When we first start with Git, we were using the [GitFlow](https://nvie.com/posts/a-successful-git-branching-model/) branch model. As there was some confusions about branches to use for current developed release and previous maintained release, and also because we were using just a very few of the GitFlow commands, we decided to add just a little modification to this branch model : since April 2020 we don't have a `master` branch anymore. Here are the branches we use and their meaning : - `develop`: ongoing development version - `support/*`: maintenance branches for older versions For example, if no version is currently prepared for shipping we could have: - `develop` containing future 3.3.0 version - `support/3.2`: 3.2.x maintenance version And when 3.3.0 will be out: - `develop`: future 3.4.0 version - `support/3.3`: 3.3.x maintenance version (will host developments for 3.3.1) - `support/3.2`: 3.2.x maintenance version ## Coding ### 🌐 Translations A [dedicated page](https://www.itophub.io/wiki/page?id=latest%3Acustomization%3Atranslation) is available in the official wiki. ### Where to start ? 1. Create a fork from our repository (see [Working with forks - GitHub Help](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/working-with-forks)) 2. Create a branch in this fork, based on the develop branch 3. Code ! Do create a dedicated branch for each modification you want to propose : if you don't, it will be very hard to merge back your work ! Most of the time you should base your developments on the develop branch. That may be different if you want to fix a bug, please use develop anyway and ask in your PR if rebase is possible. ### 🎨 PHP styleguide Please follow [our guidelines](https://www.itophub.io/wiki/page?id=latest%3Acustomization%3Acoding_standards). ### ✅ Tests Please create tests that covers as much as possible the code you're submitting. Our tests are located in the `tests/` directory, containing a PHPUnit config file : `phpunit.xml.dist`. ### Git Commit Messages * Describe the functional change instead of the technical modifications * Use the present tense ("Add feature" not "Added feature") * Use the imperative mood ("Move cursor to..." not "Moves cursor to...") * Limit the first line to 72 characters or less * Please start the commit message with an applicable emoji code (following the [Gitmoji guide](https://gitmoji.dev/)). Beware to use the code (for example `:bug:`) and not the character (🐛) as Unicode support in git clients is very poor for now... Emoji examples : * 🌐 `:globe_with_meridians:` for translations * 🎨 `:art:` when improving the format/structure of the code * ⚡️ `:zap:` when improving performance * 🐛 `:bug:` when fixing a bug * 🔥 `:fire:` when removing code or files * 💚 `:green_heart:` when fixing the CI build * ✅ `:white_check_mark:` when adding tests * 🔒 `:lock:` when dealing with security * ⬆️ `:arrow_up:` when upgrading dependencies * ⬇️ `:arrow_down:` when downgrading dependencies * ♻️ `:recycle:` code refactoring * 💄 `:lipstick:` Updating the UI and style files. ## 👥 Pull request When your code is working, please: * Squash as much as possible your commits, * Rebase your branch on our repo last commit, * Create a pull request. _Detailed procedure to work on fork and create PR is available [in GitHub help pages](https://help.github.com/articles/creating-a-pull-request-from-a-fork/)_. * Pull request description: mind to add all the information useful to understand why you're suggesting this modification and anything necessary to dive into your work. Especially: - Bugfixes: exact steps to reproduce the bug (given/when/then), description of the bug cause and what solution is implemented - Enhancements: use cases, implementation details if needed * Mind to check the "[Allow edits from maintainers](https://docs.github.com/en/github-ae@latest/pull-requests/collaborating-with-pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork)" option ! (note that if you are working with an org fork, this option [won't be available](https://github.com/orgs/community/discussions/5634)) ## 🙏 We are thankful We are thankful for all your contributions to the iTop universe! As a thank-you gift, we will send stickers to every iTop (& extensions) contributors! We have one sticker per contribution type. You might get multiple stickers with one contribution though :) * Bug hunter: Fix a bug * Translator: Add/update translations * White hat: Find and/or fix a vulnerability * Contributor: Contribute by finding a bug, making an extension or any other way * Partner: For Combodo's official partners * Graduated: Follow a Combodo's iTop training * Ambassador: Outstanding community contributors * Beta tester: Test and give feedback on beta releases * Extension developer: Develop and publish an extension