Download the PHP package emresari89/laravel-mongodb-cache without Composer
On this page you can find all versions of the php package emresari89/laravel-mongodb-cache. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download emresari89/laravel-mongodb-cache
More information about emresari89/laravel-mongodb-cache
Files in emresari89/laravel-mongodb-cache
Download emresari89/laravel-mongodb-cache
More information about emresari89/laravel-mongodb-cache
Files in emresari89/laravel-mongodb-cache
Vendor emresari89
Package laravel-mongodb-cache
Short Description A MongoDB cache driver for Laravel
License MIT
Package laravel-mongodb-cache
Short Description A MongoDB cache driver for Laravel
License MIT
Please rate this library. Is it a good library?
Informations about the package laravel-mongodb-cache
Laravel Mongodb Cache
A MongoDB cache driver for Laravel
Installation
Make sure you have jenssegers\mongodb installed before you continue.
Install using composer:
composer require emresari89/laravel-mongo-cache
Add the session service provider in app/config/app.php
:
'Emresar\Mongodb\Cache\MongoCacheServiceProvider',
Add mongodb cache store in app/config/cache.php
'stores' => [
/...
'mongodb' => [
'driver' => 'mongodb',
'table' => 'cache',
'connection' => null,
],
],
Update your .env file and change the CACHE_DRIVER
to mongodb
CACHE_DRIVER=mongodb
All versions of laravel-mongodb-cache with dependencies
PHP Build Version
Package Version
The package emresari89/laravel-mongodb-cache contains the following files
Loading the files please wait ....