-
- Downloads
Initial commit
Showing
- README.md 68 additions, 0 deletionsREADME.md
- cache-pilot.php 89 additions, 0 deletionscache-pilot.php
- cache_pilot.info.yml 4 additions, 0 deletionscache_pilot.info.yml
- cache_pilot.install 27 additions, 0 deletionscache_pilot.install
- cache_pilot.libraries.yml 4 additions, 0 deletionscache_pilot.libraries.yml
- cache_pilot.links.menu.yml 5 additions, 0 deletionscache_pilot.links.menu.yml
- cache_pilot.links.task.yml 4 additions, 0 deletionscache_pilot.links.task.yml
- cache_pilot.module 58 additions, 0 deletionscache_pilot.module
- cache_pilot.permissions.yml 3 additions, 0 deletionscache_pilot.permissions.yml
- cache_pilot.routing.yml 17 additions, 0 deletionscache_pilot.routing.yml
- cache_pilot.services.yml 13 additions, 0 deletionscache_pilot.services.yml
- composer.json 23 additions, 0 deletionscomposer.json
- config/install/cache_pilot.settings.yml 4 additions, 0 deletionsconfig/install/cache_pilot.settings.yml
- config/schema/cache_pilot.schema.yml 22 additions, 0 deletionsconfig/schema/cache_pilot.schema.yml
- css/cache-pilot-fragmentation-bar.css 35 additions, 0 deletionscss/cache-pilot-fragmentation-bar.css
- drush.services.yml 14 additions, 0 deletionsdrush.services.yml
- phpstan.neon 6 additions, 0 deletionsphpstan.neon
- src/Cache/ApcuCache.php 43 additions, 0 deletionssrc/Cache/ApcuCache.php
- src/Cache/OpcacheCache.php 43 additions, 0 deletionssrc/Cache/OpcacheCache.php
- src/Client/Client.php 93 additions, 0 deletionssrc/Client/Client.php
README.md
0 → 100644
cache-pilot.php
0 → 100644
cache_pilot.info.yml
0 → 100644
cache_pilot.install
0 → 100644
cache_pilot.libraries.yml
0 → 100644
cache_pilot.links.menu.yml
0 → 100644
cache_pilot.links.task.yml
0 → 100644
cache_pilot.module
0 → 100644
cache_pilot.permissions.yml
0 → 100644
cache_pilot.routing.yml
0 → 100644
cache_pilot.services.yml
0 → 100644
composer.json
0 → 100644
{ | |||
"name": "drupal/cache_pilot", | |||
"type": "drupal-module", | |||
"version": "1.0.0-dev", | |||
"description": "Simple tools to manage the APCu and OPcache caches.", | |||
"keywords": [ | |||
"Drupal", | |||
"cache", | |||
"APCu", | |||
"Zend OPcache" | |||
], | |||
"license": "GPL-2.0+", | |||
"homepage": "https://www.drupal.org/project/apcu", | |||
"support": { | |||
"issues": "https://www.drupal.org/project/issues/apcu", | |||
"source": "https://cgit.drupalcode.org/apcu" | |||
}, | |||
"require": { | |||
"php": ">=8.3", | |||
"drupal/core": "^10.3 || ^11.0", | |||
"hollodotme/fast-cgi-client": "^3.1" | |||
} | |||
} |
config/install/cache_pilot.settings.yml
0 → 100644
config/schema/cache_pilot.schema.yml
0 → 100644
css/cache-pilot-fragmentation-bar.css
0 → 100644
drush.services.yml
0 → 100644
phpstan.neon
0 → 100644
src/Cache/ApcuCache.php
0 → 100644
src/Cache/OpcacheCache.php
0 → 100644
src/Client/Client.php
0 → 100644
Please register or sign in to comment