wplibs/database

WordPress database query builder, based on illuminate/database

Installs: 1 219

Dependents: 0

Suggesters: 0

Security: 0

Stars: 4

Watchers: 2

Forks: 1

Open Issues: 0

pkg:composer/wplibs/database

1.0.0 2018-11-09 12:00 UTC

This package is auto-updated.

Last update: 2025-10-11 00:10:38 UTC


README

Installation

composer require wplibs/database:^1.0

Usage

Basic Example

<?php

use WPLibs\Database\Database;

$builder = Database::newQuery()->select( '*' )->from( 'posts' );

var_dump( $posts = $builder->get() );

var_dump( $builder->toSql() ); // select * from `{$wpdb->posts}`

The query above can be shorten by this:

$posts = Database::table( 'posts' )->get();

Documents

https://laravel.com/docs/5.4/queries