https://github.com/putyourlightson/craft-blitz-hints
Provides templating performance hints.
https://github.com/putyourlightson/craft-blitz-hints
Last synced: 11 months ago
JSON representation
Provides templating performance hints.
- Host: GitHub
- URL: https://github.com/putyourlightson/craft-blitz-hints
- Owner: putyourlightson
- License: mit
- Created: 2022-05-12T06:35:23.000Z (about 4 years ago)
- Default Branch: develop
- Last Pushed: 2024-04-16T14:56:28.000Z (about 2 years ago)
- Last Synced: 2024-11-29T11:07:46.983Z (over 1 year ago)
- Language: PHP
- Size: 60.5 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
[]((https://packagist.org/packages/putyourlightson/craft-blitz-hints))
[](https://packagist.org/packages/putyourlightson/craft-blitz-hints)

# Blitz Hints Module for Craft CMS
This module provides the hint functionality and utility for the [Blitz](https://putyourlightson.com/plugins/blitz) and [Blitz Recommendations](https://putyourlightson.com/plugins/blitz-recommendations) plugins for [Craft CMS](https://craftcms.com/).
First require the package in your plugin/module's `composer.json` file.
```json
{
"require": {
"putyourlightson/craft-blitz-hints": "^1.0"
}
}
```
Then bootstrap the module from within your plugin/module's `init` method.
```php
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](https://craftcms.com/) 4.0.0 or later.
## Installation
Install this package via composer.
```shell
composer require putyourlightson/craft-blitz-hints
```
---
Created by [PutYourLightsOn](https://putyourlightson.com/).