This site mirrors the Moodle Plugins database as a Composer repository.
This project was forked from WordPress Packagist and also drew inspiration from Michael Aherne's moodle-plugin-repo project.
https://moodleplugarit.mmg.fi
to your project's composer.json
.moodle-plugin-db
as the vendor name.moodle/moodle
metapackage to enforce version requirements. This does not install core.composer update
to install or update Moodle plugins.The following example composer file would install mod/attendance
and the Essential theme at the highest versions available for Moodle 3.0:
{ "name": "myschool/my-moodle-site", "description": "My Moodle site", "repositories":[ { "type":"composer", "url":"https://moodleplugarit.mmg.fi" } ], "require": { "moodle/moodle":"3.0.0", "moodle-plugin-db/mod_attendance":"*", "moodle-plugin-db/theme_essential":"*", } }
Moodle Packagist is maintained by the Collaborative Liberal Arts Moodle Project (CLAMP). Please see GitHub for issue tracking and support.