The APCu Diagnostics module provides Drupal integration for the debug tools provided by krakjoe/apcu.

Requirements/Installation

This module requires the following Composer repository be added to the project's composer.json file:

{
    "type": "package",
    "package": {
        "name": "krakjoe/apcu",
        "version": "5.1.23",
        "source": {
            "url": "https://github.com/krakjoe/apcu.git",
            "type": "git",
            "reference" : "origin/master"
        }
    }
}

For example:

"repositories": [
    {
        "type": "composer",
        "url": "https://packages.drupal.org/8"
    },
    {
        "type": "package",
        "package": {
            "name": "krakjoe/apcu",
            "version": "5.1.23",
            "source": {
                "url": "https://github.com/krakjoe/apcu.git",
                "type": "git",
                "reference" : "origin/master"
            }
        }
    }
],

For the project, run composer require krakjoe/apcu.

Configuration

  1. Enable the module at Administration > Extend.
  2. Grant the 'Access APCu diagnostics' permission to roles, as necessary. (Be mindful this is an administrator-level permission.)

Usage

In the Admin menu, navigate to 'Reports' -> 'APCu diagnostics report'.

Project information

Releases