KO
|
EN
gitlite — search
Search
#dotfiles
#javascript
#ruby
#java
#php
#vim
#mantisbt-plugin
#linux
#c-plus-plus
#nodejs
#shell
#unmaintained
yamldb
★ 38
Open GitHub ↗
Don't use this, please.
Download README (.md)
Explore Similar Repositories
cryptolens-golang
:
Client API to access the functionality of Cryptolens Software Licensing API
Manga-Translator-With-Deep-Learning
:
DL project to find text on speech balloons and translate then.
yaml-dataclass-config
:
This project helps you to import config file writen by YAML to Python dataclass.
keepassxc-pwned
:
Check your keepassxc database against previously breached haveibeenpwned passwords
upfy
:
A bash script to populate a fresh unix system with useful commands and aliases
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
yamldb
?
Download (.md)
# YamlDb Note: this is a silly project, not intended for production. This library allows you to use a YAML file as a database in a PHP project. [](https://circleci.com/gh/asgrim/yamldb/tree/master) ## Installation Install with `composer require asgrim/yamldb`. ## Usage ```php use Asgrim\YamlDb\Database\FlysystemBackedYamlDb; use League\Flysystem\Adapter\Local; use League\Flysystem\Filesystem; $yamlDb = new FlysystemBackedYamlDb(new Filesystem(new Local('/var/lib/yamldb'))); $generatedId = $yamlDb->insert(['foo' => 'bar']); // Later... $myData = $yamlDb->findById($generatedId); // ['foo' => 'bar'] ``` ## Why Why not.