Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robinn1/filecache-dashboard
FileCache (robinn/cache) dashboard for phpCacheAdmin.
https://github.com/robinn1/filecache-dashboard
cache dashboard file filecache phpcacheadmin
Last synced: about 8 hours ago
JSON representation
FileCache (robinn/cache) dashboard for phpCacheAdmin.
- Host: GitHub
- URL: https://github.com/robinn1/filecache-dashboard
- Owner: RobiNN1
- License: mit
- Created: 2022-10-10T12:37:55.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-10-05T13:48:06.000Z (about 1 month ago)
- Last Synced: 2024-11-04T21:45:05.610Z (12 days ago)
- Topics: cache, dashboard, file, filecache, phpcacheadmin
- Language: PHP
- Homepage:
- Size: 961 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FileCache-Dashboard
FileCache ([`robinn/cache`](https://github.com/RobiNN1/Cache)) dashboard
for [phpCacheAdmin](https://github.com/RobiNN1/phpCacheAdmin).![Visitor Badge](https://visitor-badge.laobi.icu/badge?page_id=RobiNN1.FileCache-Dashboard)
## Installation
```
composer require robinn/filecache-dashboard
```In phpCacheAdmin's `config.php` add class to the `dashboards` list and add `filecache` config
```php
'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 >= 2.0.0