Download the PHP package jdodds/key-value-file without Composer
On this page you can find all versions of the php package jdodds/key-value-file. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download jdodds/key-value-file
More information about jdodds/key-value-file
Files in jdodds/key-value-file
Download jdodds/key-value-file
More information about jdodds/key-value-file
Files in jdodds/key-value-file
Vendor jdodds
Package key-value-file
Short Description a simple file-backed persistent key-value store
License BSD-2-Clause
Homepage https://github.com/jdodds/php-key-value-file
Package key-value-file
Short Description a simple file-backed persistent key-value store
License BSD-2-Clause
Homepage https://github.com/jdodds/php-key-value-file
Please rate this library. Is it a good library?
Informations about the package key-value-file
This is a very simple file-backed persistent key-value store for php.
Usage:
$store = new JDodds\Storage\KeyValueFile('/path/to/save/in');
$store->attach('foo', 'bar');
$store['baz'] = 'quux';
$store->persist();
// ... sometime later
$store = new JDodds\Storage\KeyValueFile('/the/same/path/as/before');
$foo = $store['foo'];
$foo2 = $store->detach('foo');
$store->contains('foo') // false;
All versions of key-value-file with dependencies
PHP Build Version
Package Version
No informations.
The package jdodds/key-value-file contains the following files
Loading the files please wait ....