moviet / opcache
Simple laravel opcache using artisan commands for most versions
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/moviet/opcache
Requires
- php: ^7.0 || ^8.0
This package is auto-updated.
Last update: 2025-10-06 11:10:44 UTC
README
Simple php opcache using laravel commands for most versions minimum v5.3.
Installation
The package can be installed via composer:
composer require moviet/opcache dev-main
Usage
Flush the contents of the opcache:
php artisan opcache:clear
Show configuration information about the cache:
php artisan opcache:config
Get status information about the cache:
php artisan opcache:status
Use Manual Code
use Moviet\Opcache\Opcode; Opcode::clear(); Opcode::getConfig(); Opcode::getStatus();