An open API service indexing awesome lists of open source software.

https://github.com/montyanderson/lava

Lava PHP ORM
https://github.com/montyanderson/lava

Last synced: 3 months ago
JSON representation

Lava PHP ORM

Awesome Lists containing this project

README

        

# lava
A secure PHP ORM

## Usage

``` php
insert(array(
"name" => "Monty",
"age" => 16
));

$users->update(array(
"age" => "17",
), array(
"name" => "Monty"
));

var_dump($users->find(array(
"name" => "Monty"
)));
```