Skip to content

Latest commit

 

History

History
52 lines (36 loc) · 2.59 KB

CONTRIBUTING.md

File metadata and controls

52 lines (36 loc) · 2.59 KB

Contributing to Moodle

Moodle is made by people like you. We are members of a big worldwide community of developers, designers, teachers, testers, translators and many more. We work in universities, schools, companies and other places. You are very welcome to join us and contribute to the project.

There are many ways that you can contribute to Moodle, not just through development. See our community contribution guide for some of the many ways that you can help.

Github

Note

Please do not open pull requests via Github.

All issues should be reported via, and patched provided to the Moodle Tracker.

The Moodle Github repository is a clone of the official Moodle repository, whcih can be found at https://git.moodle.org.

Moodle core bug fixes and new features

Over the years, Moodle has developed a mature process for reporting, reviewing, and accepting patches. This is fully documented in our documentation on development processes, but in summary:

  • Every bug fix or new feature must have a tracker issue.
  • You publish the branch implementing the fix or new feature in your public clone of the moodle.git repository (typically on Github).
  • Your patch is peer-reviewed, discussed, integrated, tested and then released as a part of one of our weekly releases.
  • New features are developed on the main branch. Bug fixes are also backported to currently supported maintenance (stable) branches.

Important

Please do not publish security issues, or patches releating to them publicly. See our Responsible Disclosure Policy for more information.

Moodle plugins

Moodle has a framework for additional plugins to extend its functionality. We have a Moodle plugins directory https://moodle.org/plugins/ where you can register and maintain your plugin. Plugins hosted in the plugins directory can be easily installed and updated via the Moodle administration interface.

  • You are expected to have a public source code repository with your plugin code.
  • After registering your plugin in the plugins directory it is reviewed before being published.
  • You are expected to continuously release updated versions of the plugin via the plugins directory. We do not pull from your code repository; you must do it explicitly.

For further details, see https://moodledev.io/general/community/plugincontribution.