fudyartanto / c5orm
Concrete5 ORM包。
1.0.2
2017-06-29 23:26 UTC
Requires
- php: >=5.4
Requires (Dev)
- phpunit/phpunit: 5.2.*
This package is not auto-updated.
Last update: 2024-09-23 06:56:13 UTC
README
C5orm是Concrete5 CMS的对象关系映射(ORM)。C5orm受到eloquent的启发,因此c5orm的语法与eloquent语法非常相似。
使用说明
composer require "fudyartanto/c5orm"
use Fudyartanto\C5orm\Model; class MyTable extends Model { /** * The table associated with the model. * * @var string */ protected static $table = 'MyTableName'; } // Retrieve a model by its primary key $mytable = MyTable::find(1)
文档
文档包含在此仓库的根目录中,并在https://fudyartanto.github.io/c5orm/公开提供。文档也可以在本地运行。