diff --git a/composer.json b/composer.json index 2bd624b..368ec22 100644 --- a/composer.json +++ b/composer.json @@ -29,9 +29,10 @@ }, "minimum-stability": "stable", "suggest": { + "adammbalogh/key-value-store-null": "For using Null storage", + "adammbalogh/key-value-store-memory": "For using Memory storage", "adammbalogh/key-value-store-file": "For using File storage", "adammbalogh/key-value-store-memcached": "For using Memcached storage", - "adammbalogh/key-value-store-redis": "For using Redis storage", - "adammbalogh/key-value-store-null": "For using Null storage" + "adammbalogh/key-value-store-redis": "For using Redis storage" } } diff --git a/readme.md b/readme.md index 476adcc..c001d58 100644 --- a/readme.md +++ b/readme.md @@ -22,6 +22,8 @@ This library provides an abstraction layer for key value stores. It is literally * **Null** * package: [key-value-store-null](https://github.com/adammbalogh/key-value-store-null) +* **Memory** (array) + * package: [key-value-store-memory](https://github.com/adammbalogh/key-value-store-memory) * **File** * package: [key-value-store-file](https://github.com/adammbalogh/key-value-store-file) * **Memcached** @@ -31,7 +33,6 @@ This library provides an abstraction layer for key value stores. It is literally ### Planned adapters -* Memory (array) * Shared memory * Memcache * Apc