yzen.dev/laravel-opcache-facade

Laravel artisan commands for working with opcache.

Installs: 3 216

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/yzen.dev/laravel-opcache-facade

0.0.2 2021-02-08 19:45 UTC

This package is auto-updated.

Last update: 2025-10-09 06:24:02 UTC


README

Packagist Version Packagist Downloads Packagist Downloads

Laravel artisan commands for working with opcache.

📜 Installation

The package can be installed via composer:

composer require yzen.dev/laravel-opcache-facade

📜 Usage

Resets the contents of the opcode cache:

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 from code

use LaravelOpcacheFacade\OpcacheFacade;

OpcacheFacade::clear();
OpcacheFacade::getConfig();
OpcacheFacade::getStatus();