Skip to content

Commit 32527f6

Browse files
committed
Updated all the readmes to be coherent
1 parent 3f0f4bf commit 32527f6

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Memcached PSR-6 Cache pool
2-
[![Latest Stable Version](https://poser.pugx.org/cache/memcached-adapter/v/stable)](https://packagist.org/packages/cache/memcached-adapter) [![codecov.io](https://codecov.io/github/php-cache/memcached-adapter/coverage.svg?branch=master)](https://codecov.io/github/php-cache/memcached-adapter?branch=master) [![Build Status](https://travis-ci.org/php-cache/memcached-adapter.svg?branch=master)](https://travis-ci.org/php-cache/memcached-adapter) [![Total Downloads](https://poser.pugx.org/cache/memcached-adapter/downloads)](https://packagist.org/packages/cache/memcached-adapter) [![Monthly Downloads](https://poser.pugx.org/cache/memcached-adapter/d/monthly.png)](https://packagist.org/packages/cache/memcached-adapter) [![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE)
2+
[![Gitter](https://badges.gitter.im/php-cache/cache.svg)](https://gitter.im/php-cache/cache?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
3+
[![Latest Stable Version](https://poser.pugx.org/cache/memcached-adapter/v/stable)](https://packagist.org/packages/cache/memcached-adapter)
4+
[![Total Downloads](https://poser.pugx.org/cache/memcached-adapter/downloads)](https://packagist.org/packages/cache/memcached-adapter)
5+
[![Monthly Downloads](https://poser.pugx.org/cache/memcached-adapter/d/monthly.png)](https://packagist.org/packages/cache/memcached-adapter)
6+
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE)
37

48
This is a PSR-6 cache implementation using Memcached. It is a part of the PHP Cache organisation. To read about
59
features like tagging and hierarchy support please read the shared documentation at [www.php-cache.com](http://www.php-cache.com).
@@ -10,7 +14,7 @@ features like tagging and hierarchy support please read the shared documentation
1014
composer require cache/memcached-adapter
1115
```
1216

13-
### Configure
17+
### Use
1418

1519
To create an instance of `MemcachedCachePool` you need to configure a `\Memcached` client.
1620

@@ -19,3 +23,8 @@ $client = new \Memcached();
1923
$client->addServer('localhost', 11211);
2024
$pool = new MemcachedCachePool($client);
2125
```
26+
27+
### Contribute
28+
29+
Contributions are very welcome! Send a pull request to the [main repository](https://github.com/php-cache/cache) or
30+
report any issues you find on the [issue tracker](http://issues.php-cache.com).

0 commit comments

Comments
 (0)