pollen / laravel-opcache
PHP OPcache Artisan commands for Laravel.
Requires
- php: >=7.2.5
- guzzlehttp/guzzle: ^6.3.1|^7.0
Requires (Dev)
- orchestra/testbench: ^8.21
- pestphp/pest: ^2.34
- pestphp/pest-plugin-laravel: ^2.3
This package is auto-updated.
Last update: 2024-10-07 07:05:36 UTC
README
This package contains some useful Artisan commands to work with PHP OPcache.
If you want to learn more about OPcache and what it can do for your Laravel application, read the article on Medium.
Requirements
This package requires Laravel 7 or newer.
Installation
You can install the package via Composer:
composer require pollen/laravel-opcache
If you need to change config values, you can publish the config file with:
php artisan vendor:publish --provider="Pollen\Opcache\OpcacheServiceProvider" --tag="config"
Make sure your APP_URL is set correctly in .env.
If you want to set a different url to call the OPcache routes (for use with a load balancer for example), you can set OPCACHE_URL.
Usage
Clear OPcache:
php artisan opcache:clear
Show OPcache config:
php artisan opcache:config
Show OPcache status:
php artisan opcache:status
Pre-compile your application code:
php artisan opcache:compile {--force}
Note: opcache.dups_fix
must be enabled, or use the --force
flag.
If you run into "Cannot redeclare class" errors, enable opcache.dups_fix
or add the class path to the exclude list.
Programmatic usage:
use Pollen\Opcache\OpcacheFacade as OPcache; ... OPcache::clear();
Contributing
Contributions are welcome, thanks to y'all :)
About AmphiBee
We're AmphiBee, a WordPress / WooCommerce agency
Credits
Original package by Appstract
License
The MIT License (MIT). Please see License File for more information.