Skip to content
This repository has been archived by the owner on Jan 6, 2021. It is now read-only.

opis/cache

Repository files navigation

Opis Cache

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"
    }
}