orm adapter for herosphp Framework

Installs: 126

Dependents: 1

Suggesters: 0

Security: 0

Type:libary

v1.0.2 2023-02-17 06:57 UTC

This package is auto-updated.

Last update: 2024-05-17 09:49:17 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();