Download the PHP package pixnet/laravel-memcached-view without Composer
On this page you can find all versions of the php package pixnet/laravel-memcached-view. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download pixnet/laravel-memcached-view
More information about pixnet/laravel-memcached-view
Files in pixnet/laravel-memcached-view
Download pixnet/laravel-memcached-view
More information about pixnet/laravel-memcached-view
Files in pixnet/laravel-memcached-view
Vendor pixnet
Package laravel-memcached-view
Short Description This is a package for laravel 5 to replace filesystem with memcached for view
License MIT
Package laravel-memcached-view
Short Description This is a package for laravel 5 to replace filesystem with memcached for view
License MIT
Please rate this library. Is it a good library?
Informations about the package laravel-memcached-view
LaravelMemcachedView
By PIXNET ©
Memcached base for blade cache instead of file base.
install instructions
-
install by composer
$ composer require pixnet/laravel-memcached-view
-
add service provider in config/app.php
'providers' => [ //... PIXNET\MemcachedView\Providers\ViewServiceProvider::class, //... ],
-
add alias in config/app.php
'alias' => [ //... 'MemcacheStorage' => PIXNET\MemcachedView\Filesystem\MemcacheStorage::class, //... ]
-
set up your memcache setting in config/cache.php
return [ // ... 'store' => [ // ... 'memcached' => [ 'driver' => 'memcached', 'servers' => [ [ 'host' => 'YOUR_MEMCACHED_SERVER_IP', 'port' => 'MEMCACHED_PORT', 'weight' => 100 ] ] ] ] ]
- here you go
All versions of laravel-memcached-view with dependencies
PHP Build Version
Package Version
The package pixnet/laravel-memcached-view contains the following files
Loading the files please wait ....