有没有好用的开源的php mysql class,类似medoo解决方法

有没有好用的开源的php mysql class,类似medoo
有没有好用的开源的php mysql class,类似medoo的那种

但是medoo没有  orderby    limit 等功能

CI框架中的db类比较好用,但是我想脱离ci去用他的db类,现在还做不到


有没有知道其他的好用的mysql class,最好是开源的成熟的
------解决方案--------------------
medoo 不就很好的吗?

medoo 是有 order by 的(http://medoo.in/api/where)
$database->select("account", "user_id", [
"GROUP" => "type",
 
// "ORDER" => "age DESC"
"ORDER" => "age",
 
// Must have to use it with ORDER together
"HAVING" => [
"user_id[>]" => 500
],
 
// LIMIT => 20
"LIMIT" => [20, 100]
]);
// SELECT user_id FROM account
// GROUP BY type
// ORDER BY age
// HAVING user_id > 500
// LIMIT 20,100