Skip to content

Latest commit

 

History

History
25 lines (23 loc) · 902 Bytes

File metadata and controls

25 lines (23 loc) · 902 Bytes

Stratified block randomzation module for GemsTracker

This module adds block randomization to GemsTracker if you add it to the project composer file and register it in your projects escort.

Installation

  1. Add to composer.json of project, including adding the repository
    "require": {
        "gemstracker/randomize-module": "dev-master"
    },
    "repositories": [
        {
            "type": "git",
            "url": "https://github.com/GemsTracker/randomize-module.git"
        }
    }
  1. composer update
  2. Register your module in your Projects Escort by adding the following static property:
    public static $modules = [
        'RandomizerModule' => \GemsRandomizer\ModuleSettings::class,
    ];
  1. Your Project should now have a menu Item "Sample Module Test", which is added from this Module and refers to the controller in controller/ModuleTestController