aping/laravel-opcache-gui
Laravel Opcache GUI for Laravel apps. Adds a simple web page to view PHP OPCache status and configuration. Install via Composer, register the service provider, and add a route to access the dashboard (e.g., /opcache). Flush support planned.
phpadmin or Xdebug.config/opcache.php or php.ini settings. Minimal intrusion into core Laravel architecture.php.ini-based and runtime OPcache configuration (via opcache_get_configuration()).local but enabled in staging/production).OpCacheCleared) for custom logic (e.g., cache invalidation triggers).php.ini (requires manual enablement).schedule:run) for periodic updates.php.ini (e.g., shared hosting)?opcache_dump() or external monitoring)?php.ini (or runtime config):
opcache.enable=1
opcache.enable_cli=1 ; if CLI access is needed
config/opcache.php (if using Laravel’s OPcache config package).composer require aping/laravel-opcache-gui
php artisan vendor:publish --tag="opcache-gui-config"
Route::get('/opcache', [OpCacheController::class, 'index'])).auth, can:view-opcache).resources/views/vendor/opcache-gui/index.blade.php).config/opcache-gui.php for:
laravel-opcache-config).xdebug).php -i | grep opcache).admin role).config/opcache-gui.php to avoid environment-specific tweaks.phpinfo() or php -m | grep opcache.php artisan opcache:clear (built-in command).opcache_get_status() in Tinker for CLI diagnostics.How can I help you explore Laravel packages today?