Skip to content

RobiNN1/FileCache-Dashboard

Repository files navigation

FileCache-Dashboard

FileCache (robinn/cache) dashboard for phpCacheAdmin.

Visitor Badge

FileCache

Installation

composer require robinn/filecache-dashboard

In phpCacheAdmin's config.php add class to the dashboards list and add filecache config

'dashboards' => [
    ...
    RobiNN\FileCache\FileCacheDashboard::class,
],
'filecache'  => [
    [
        'name' => 'Project Name', // Optional
        'path' => __DIR__.'/path/to/cache/data',
    ],
],

For this to work, phpCacheAdmin should be in the same directory as the project or have access to folders outside of website root.

Requirements

  • PHP >= 8.2
  • phpCacheAdmin >= 1.6.0