eilander/cache

Laravel 5 cache package.

v5.6.0 2018-02-09 07:16 UTC

This package is auto-updated.

Last update: 2024-04-21 18:45:07 UTC


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