eilander / cache
Laravel 5 cache package.
v5.6.0
2018-02-09 07:16 UTC
Requires
- php: >=5.5.9
- laravel/framework: >=5.1
README
Table of contents
[TOC]
Usage
Step 1: Add package to composer.json for autoloading
Use eilander/framework OR add the package to the main composer.json
for autoloading and run composer dump-autoload
, like so:
#!php
<?php
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/",
"Eilander\\Cache\\": "../library/eilander/cache/src/"
}
},
#!json
composer dump-autoload