tobono/acorn-wpdb

acorn 的 WPDB 驱动程序

dev-main 2024-08-23 14:21 UTC

This package is not auto-updated.

Last update: 2024-09-25 08:08:32 UTC


README

Acorn WPDB 是为基于 AcornSage 10 的项目提供的 Laravel Eloquent 驱动程序。

安装

通过 composer 安装

composer require tobono/acorn-wpdb

使用方法

您应该配置数据库连接以使用 wpdb 驱动程序。

示例

//...
  'connections' => [
        'wpdb' => [
            'driver' => 'wpdb',
            'host' => DB_HOST,
            'database' => DB_NAME,
            'username' => DB_USER,
            'password' => DB_PASSWORD,
            'prefix' => $GLOBALS['wpdb']->prefix,
        ],
    ]
//...