herosphp / orm
orm adapter for herosphp Framework
v1.0.2
2023-02-17 06:57 UTC
Requires
- php: ^8.0.2
- illuminate/database: ^9.0
- illuminate/events: ^9.0
- illuminate/pagination: ^9.0
Requires (Dev)
This package is auto-updated.
Last update: 2024-12-17 10:56:42 UTC
README
illuminate/database
适配 herosphp
安装
composer require herosphp/orm
生成默认配置文件
composer vendor:publish "herosphp/orm"
使用
<?php
declare(strict_types=1);
namespace app\bootstrap;
use herosphp\plugin\orm;
/**
* Laravel启动器
*/
class LaravelStarter extends LaravelDbStarter
{
//自定义分页参数名称
//protected static string $pageName = "page";
}
LaravelStarter::init();