Skip to content

Latest commit

 

History

History
187 lines (131 loc) · 9.74 KB

CONTRIBUTING.md

File metadata and controls

187 lines (131 loc) · 9.74 KB

Contributing to FusionDirectory projects

🎉 First off, thanks for taking the time to contribute!

«Here's a list of our guidelines, If you want to share a best practice, or think one of these guidelines should be removed, feel free to share it with us.»

Table Of Contents

  1. TL;DR
  2. Code of Conduct
  3. I just have a question!
  4. How Can I Contribute?
  5. Coding with style
  6. Licensing

TL;DR

You're so excited to contribute that you do not have time to read the entire document. Here you will find some keys to quickly and safety contribute. 😉

  1. Our communication Channels. Feel free to discuss with us.
  2. Just be cool and respectful with others
  3. create an FusionDirectory project account at FusionDirectory Sign UP
  4. Use our PHP CodeSniffer <http://pear.php.net/package/PHP_CodeSniffer>_ rules to check code compliance CodeSniffer
  5. Your code should be tested
  6. Respect this simple commit message template
<emoji> <type>(<scope>): <subject>
<BLANK LINE>
<body>
<BLANK LINE>
<footer>

The header is mandatory and the scope of the header is optional.

Where type can be :

  • feat: A new feature
  • fix: A bug fix
  • core: Code for the Core
  • docs: Documenting the code or writing new documentation
  • style: Cosmetics purpose
  • test: Adding missing or correcting tests
  1. For the subject, use the present tense ("Add feature" not "Added feature")
  2. Should be submitted through FusionDirectory gitlab via a pull request on the 1.x-dev branch.

Now, if you want to go further, sit comfortably at the fireplace, grab your glasses and immerse yourself in our documentation.

Code Of Conduct

All projects and everyone participating in it is governed by FusionDirectory Code Of Conduct. By participating, you are expected to uphold this code. Please read this before.

I just have a question!

Note: Please don't file an issue to ask a question. You'll get faster results by using the resource below.

We have an various channel of communications

How Can I Contribute?

So, you've developed a new cool feature? Fixed an annoying bug? Found a mistake? We'd be happy to hear from you! 👍

Register for a FusionDirectory project account

To create a FusionDirectory project Account you must go to

Put FusionDirectory in debug mode

  • Go into FusionDirectory configuration
  • Activate the displaying of PHP errors, and the TRACE debug level

Finding Wonderful Bugs

This section guides you through submitting a bug report. Following these guidelines helps maintainers and the community understand your report, reproduce the behavior, and find related reports.

When you are creating a bug report, please include as many details as possible. Fill out the required template, the information it asks for helps us resolve issues faster. We have a template to create issues. Please use this template.

Explain the problem and include additional details to help maintainers reproduce the problem:

  • Use a clear and descriptive title for the issue to identify the problem.
  • Describe the exact steps which reproduce the problem in as many details as possible. For example, start by explaining wich brower and it's version. When listing steps, don't just say what you did, but explain how you did it. For example, if you moved the cursor to the end of an input, explain if you used the mouse, or a keyboard.
  • Describe the behavior you observed after following the steps and point out what exactly is the problem with that behavior.
  • Explain which behavior you expected to see instead and why.
  • Include screenshots and animated GIFs which show you following the described steps and clearly demonstrate the problem. You can use this tool to record GIFs on macOS and Windows, and this tool or this tool on Linux.
  • Include the PHP errors and trace collected at the debug step above
  • If the problem is linked to a specific LDAP entry attach its LDAP dump.

Any Feedback To Enhance FusionDirectory

This section guides you through submitting an enhancement suggestion, including completely new features and minor improvements to existing functionality. Following these guidelines helps maintainers and the community understand your suggestion and find related suggestions.

Fill in the template, including the steps that you imagine you would take if the feature you're requesting existed. Enhancement suggestions are tracked on FusionDirectory for the core program, and FusionDirectory Plugins for plugins.

After you've determined which repository your enhancement suggestion is related to, create an issue on that repository and provide the following information:

  • Use a clear and descriptive title for the issue to identify the suggestion.
  • Provide a step-by-step description of the suggested enhancement in as many details as possible.
  • Describe the current behavior and explain which behavior you expected to see instead and why.
  • Include screenshots and animated GIFs which help you demonstrate the steps which the suggestion is related to. You can use this tool to record GIFs on macOS and Windows, and this tool or this tool on Linux.
  • Explain why this enhancement would be useful to most FusionDirectory users.

Your awesome And Mighty Codes Contributions

This section guides you through submitting an enhancement suggestion, including completely new features and minor improvements to existing functionality. Following these guidelines helps maintainers and the community understand your suggestion and find related suggestions.

  • Fill in the required template
  • Include screenshots and animated GIFs in your pull request whenever possible.
  • Follow the Coding standards
  • Use our PHP CodeSniffer <http://pear.php.net/package/PHP_CodeSniffer>_ rules to check code compliance CodeSniffer
  • End all files with a newline

Coding with style

Git Commit Messages

Having a good guideline for creating commits and sticking to it makes working with Git and collaborating with others a lot easier.

Here are some rules of thumb :

  • Use the present tense ("Add feature" not "Added feature")
  • If you have a body, separate the subject from the body with a newline
  • Limit the subject line to 72 characters
  • Do not end the subject line with a period
  • Use imperative mood in the subject line
  • If the subject is not clear enough, use the body to explain what and why as opposed to how
  • Consider starting the commit message with an applicable emoji, when you feel it's an important commit :
    • 🎉 When first / initial commit
    • ✨ When introducing new features
    • 🚑 When fixing a bug
    • 🤝 When merging files
    • 🚜 When you changing file structure or refactoring
    • 📚 When writing docs
    • 💎 When new Release
    • 💄 For cosmetics purposes

Commit Message Format

Each commit message consists of a header, a body and a footer. The header has a special format that includes a type, a scope and a subject:

<emoji> <type>(<scope>): <subject>
<BLANK LINE>
<body>
<BLANK LINE>
<footer>

The header is mandatory and the scope of the header is optional.

Examples:

:sparkles: feat(supann): Make supannRefId multivaluated

supannRefId on Structure object is too small and mono valued

close #5685

PHP style Guide

To be sure to respect our guidelines, read Coding standards

Licensing

For all new projects and most of older one we use GPL2+ License. You can find it here.

Make sure to use resources that we have the rights to use. Copyrighted images and videos may cause legal problems.


This document is strongly inspired by the following resources: ovh-ux-guidelines , project-guidelines, Atom Guidelines, Angularjs guidelines.

With love ❤️