divineomega / json-key-value-store
A simple JSON based key value store
Fund package maintenance!
DivineOmega
Installs: 233 152
Dependents: 1
Suggesters: 0
Security: 0
Stars: 5
Watchers: 3
Forks: 2
Open Issues: 0
Requires
- php: >=5.6
Requires (Dev)
- phpunit/phpunit: ^5.7
- satooshi/php-coveralls: ^2.0
This package is auto-updated.
Last update: 2024-10-24 23:44:18 UTC
README
A simple JSON based key value store.
Installation
This JSON Key Value Store package can be easily installed using Composer. Just run the following command from the root of your project.
composer require divineomega/json-key-value-store
If you have never used the Composer dependency manager before, head to the Composer website for more information on how to get started.
Usage
Using the JSON Key Value Store is designed to be super simple.
Here is a basic usage example:
use DivineOmega\JsonKeyValueStore\JsonKeyValueStore; $store = new JsonKeyValueStore('store.json.gz'); $store->set('key1', 'value123'); $store->set('key2', 'value456'); $store->delete('key2'); $value = $store->get('key1'); // $value = 'value123'