Download the PHP package wp-forge/wp-query-builder without Composer

On this page you can find all versions of the php package wp-forge/wp-query-builder. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package wp-query-builder

WP Query Builder

A lightweight and efficient SQL query builder for WordPress.

This is a fork of the original project (https://github.com/sultann/wp-query-builder) which appears to be unmaintained.

Installation

WP Query Builder uses PSR-4 autoloading and can be installed using composer:

Documentation

Initialization

The init method takes a string argument. You can use that later to use actions/filters specific to your query builder instance.

Without argument.

With argument

Select

This will build the query, execute and returns all users from users table with applying table prefix automatically. by default, it selects all(*) but you can define what to select from the query; If you are selecting all then you can omit the select statement.

Select specific column

Select multiple column

Where conditions

For the next few examples, lets assume a larger dataset so that the queries make sense.

Notice how omitting the operator in the first condition ->where('user_url', '') makes this default to =. By default all where conditions are defined with the and operator.

Different where operators:

There are few more builtin Where conditions available

Where scopes

Allow you to group conditions:

Where Between

Where Not Between

Where Date Between

Joins

By default, all joins are Left Join. Available join types 'LEFT', 'RIGHT', 'INNER', 'CROSS', 'LEFT OUTER', 'RIGHT OUTER' Joining tables:

Joins scopes

Allow you to group conditions:

There are few more builtin join conditions available

Grouping

Grouping data:

Having

Group by with having data:

Ordering

Ordering data:

Limiting data

Limit and offset:

Only limit

Offset as separate

Pagination

shortcut of limit and offset

Find

find item with column value

First

Get first item from the posts table

Last

Get last item from the posts table

Counting

count total rows

toSql

Out the query instead of executing

Update

Update a row

Delete

Delete a row

Search

Search a value from columns


All versions of wp-query-builder with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package wp-forge/wp-query-builder contains the following files

Loading the files please wait ....