From 9cc7739f26c758706fcd97c34da4f6d133306247 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A8ir=20Noordermeer?= Date: Wed, 28 Feb 2018 15:45:18 +0100 Subject: [PATCH] Update readme --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c65a859..43dc3a2 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,17 @@ PHP Cache library with namespace, filesystem and (p)redis implementations. ### Requirements Requires PHP 7.0+. Older versions might work but have not been tested. +### Installation +`composer require iqparts/cache` + ### Another cache library -This cache library has been highly inspired by [Genkgo.Cache](https://raw.githubusercontent.com/genkgo/cache). We recommend using this library as it implements more adapters. The reason for this library was the need to have a backup for redis which still was able to store cached values with a variable TTL. +This cache library has been highly inspired by [Genkgo.Cache](https://raw.githubusercontent.com/genkgo/cache). We recommend using Genkgo's library as it implements more adapters. The reason for this library was the need to have a backup for redis which still was able to store cached values with a **variable** TTL. ### Code +[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/IQParts/cache/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/IQParts/cache/?branch=master) +[![Code Coverage](https://scrutinizer-ci.com/g/IQParts/cache/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/IQParts/cache/?branch=master) +[![Build Status](https://scrutinizer-ci.com/g/IQParts/cache/badges/build.png?b=master)](https://scrutinizer-ci.com/g/IQParts/cache/build-status/master) + This library attempts to comply with [PSR-1](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-1-basic-coding-standard.md), [PSR-2](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md) & [PSR-4](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-4-autoloader.md). ### Create your own adapter