opis/cache

This package is abandoned and no longer maintained. No replacement package was suggested.

A library that helps you work with cached content

4.0.0 2018-09-04 18:26 UTC

README

Build Status Latest Stable Version Latest Unstable Version License

Caching library

Opis Cache is library that helps you work with cached content. Cached content can be stored and retrieved by using one of the provided cache driver. You can create your own cache driver by simply implementing an interface.

The currently supported cache drivers are: File, Memory, and PHPFile.

Documentation

The full documentation for this library can be found here.

License

Opis Cache is licensed under the Apache License, Version 2.0.

Requirements

  • PHP ^7.0

Installation

Opis Cache is available on Packagist and it can be installed from a command line interface by using Composer.

composer require opis/cache

Or you could directly reference it into your composer.json file as a dependency

{
    "require": {
        "opis/cache": "^4.0"
    }
}