├── .editorconfig ├── .styleci.yml ├── LICENSE.md ├── README.md ├── composer.json ├── config └── opcache.php └── src ├── Commands ├── Clear.php ├── Compile.php ├── Config.php └── Status.php ├── CreatesRequest.php ├── Http ├── Controllers │ └── OpcacheController.php ├── Middleware │ └── Request.php └── routes.php ├── OpcacheClass.php ├── OpcacheFacade.php └── OpcacheServiceProvider.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-opcache/HEAD/.editorconfig -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-opcache/HEAD/.styleci.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-opcache/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-opcache/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-opcache/HEAD/composer.json -------------------------------------------------------------------------------- /config/opcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-opcache/HEAD/config/opcache.php -------------------------------------------------------------------------------- /src/Commands/Clear.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-opcache/HEAD/src/Commands/Clear.php -------------------------------------------------------------------------------- /src/Commands/Compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-opcache/HEAD/src/Commands/Compile.php -------------------------------------------------------------------------------- /src/Commands/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-opcache/HEAD/src/Commands/Config.php -------------------------------------------------------------------------------- /src/Commands/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-opcache/HEAD/src/Commands/Status.php -------------------------------------------------------------------------------- /src/CreatesRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-opcache/HEAD/src/CreatesRequest.php -------------------------------------------------------------------------------- /src/Http/Controllers/OpcacheController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-opcache/HEAD/src/Http/Controllers/OpcacheController.php -------------------------------------------------------------------------------- /src/Http/Middleware/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-opcache/HEAD/src/Http/Middleware/Request.php -------------------------------------------------------------------------------- /src/Http/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-opcache/HEAD/src/Http/routes.php -------------------------------------------------------------------------------- /src/OpcacheClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-opcache/HEAD/src/OpcacheClass.php -------------------------------------------------------------------------------- /src/OpcacheFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-opcache/HEAD/src/OpcacheFacade.php -------------------------------------------------------------------------------- /src/OpcacheServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-opcache/HEAD/src/OpcacheServiceProvider.php --------------------------------------------------------------------------------