opis / cache
A library that helps you work with cached content
Installs: 1 595
Dependents: 1
Suggesters: 0
Security: 0
Stars: 7
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: ^7.0
Requires (Dev)
- phpunit/phpunit: ^6.5
- psr/simple-cache: ^1.0
README
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" } }