Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/appstract/laravel-opcache
Laravel Package for OPcache
https://github.com/appstract/laravel-opcache
artisan laravel laravel-package opcache php
Last synced: 27 days ago
JSON representation
Laravel Package for OPcache
- Host: GitHub
- URL: https://github.com/appstract/laravel-opcache
- Owner: appstract
- License: mit
- Created: 2017-02-06T19:20:39.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-07-24T07:09:28.000Z (over 1 year ago)
- Last Synced: 2024-05-17T04:44:00.089Z (6 months ago)
- Topics: artisan, laravel, laravel-package, opcache, php
- Language: PHP
- Homepage:
- Size: 207 KB
- Stars: 1,318
- Watchers: 24
- Forks: 119
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Laravel OPcache
[![Latest Version on Packagist](https://img.shields.io/packagist/v/appstract/laravel-opcache.svg?style=flat-square)](https://packagist.org/packages/appstract/laravel-opcache)
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)
[![Total Downloads](https://img.shields.io/packagist/dt/appstract/laravel-opcache.svg?style=flat-square)](https://packagist.org/packages/appstract/laravel-opcache)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](https://medium.com/appstract/make-your-laravel-app-fly-with-php-opcache-9948db2a5f93#.bjrpj4h1c).
## Requirements
This package requires Laravel 7 or newer.## Installation
You can install the package via Composer:
``` bash
composer require appstract/laravel-opcache
```If you need to change config values, you can publish the config file with:
```bash
php artisan vendor:publish --provider="Appstract\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:
``` bash
php artisan opcache:clear
```Show OPcache config:
``` bash
php artisan opcache:config
```Show OPcache status:
``` bash
php artisan opcache:status
```Pre-compile your application code:
``` bash
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:
```php
use Appstract\Opcache\OpcacheFacade as OPcache;...
OPcache::clear();
```## Contributing
Contributions are welcome, [thanks to y'all](https://github.com/appstract/laravel-opcache/graphs/contributors) :)
## About Appstract
Appstract is a small team from The Netherlands. We create (open source) tools for webdevelopment.
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.