Skip to content

Latest commit

 

History

History
56 lines (37 loc) · 1.5 KB

README.md

File metadata and controls

56 lines (37 loc) · 1.5 KB

Stable Version Total Downloads

Blitz Hints Module for Craft CMS

This module provides the hint functionality and utility for the Blitz and Blitz Recommendations plugins for Craft CMS.

First require the package in your plugin/module's composer.json file.

{
  "require": {
    "putyourlightson/craft-blitz-hints": "^1.0"
  }
}

Then bootstrap the module from within your plugin/module's init method.

use craft\base\Plugin;
use putyourlightson\blitzhints\BlitzHints;

class MyPlugin extends Plugin
{
    public function init()
    {
        parent::init();

        BlitzHints::bootstrap();
    }
}

License

This module is licensed for free under the MIT License.

Requirements

This module requires Craft CMS 4.0.0 or later.

Installation

Install this package via composer.

composer require putyourlightson/craft-blitz-hints

Created by PutYourLightsOn.