putyourlightson/craft-blitz-hints

Provides templating performance hints.

Maintainers

Package info

github.com/putyourlightson/craft-blitz-hints

Documentation

Type:craft-module

pkg:composer/putyourlightson/craft-blitz-hints

Statistics

Installs: 161 851

Dependents: 1

Suggesters: 0

Stars: 2

Open Issues: 0

2.0.0-beta.1 2024-02-14 18:55 UTC

This package is auto-updated.

Last update: 2026-02-16 19:09:35 UTC


README

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.