Download the PHP package omaressaouaf/query-builder-criteria without Composer

On this page you can find all versions of the php package omaressaouaf/query-builder-criteria. 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 query-builder-criteria

Query Builder Criteria

Latest Stable Version Tests

Introduction:

Query Builder Criteria is a Laravel package that extends Spatie's Laravel Query Builder, providing a structured way to define query filters, sorting, includes, and search functionality using reusable criteria classes.

With this package, you can:

Built on top of Spatie’s Query Builder, this package removes repetitive query logic, keeping your controllers and models clean and maintainable. 🚀

🔗 Example:

Instead of manually handling query parameters, just define a Criteria Class:

And apply it with one line of code:

✨ No more manual query handling – just define once and reuse!

Table of Contents

Installation

Install via Composer:

Publishing the Configuration

After installation, you can publish the package configuration file using:

This will create a configuration file in config/query-builder-criteria.php, allowing you to customize the default behavior.


Get Started

This package allows you to define query criteria for your models, enabling filtering, sorting, field selection, and more.

Example: Post Criteria

Let's say we have a Post model. We want to allow users to:

We define these rules in a criteria class:

Now, in our Post model:

Then we can call the scope

Now we can query posts like this:


Criteria configuration

Filters

URL Query Example:

Configuration:

Sorting

URL Query Example:

Configuration:

Includes

URL Query Example:

Configuration:

Field Selection

URL Query Example:

Configuration:

Search

URL Query Example:

Configuration:

Aliases

You can define an alias for a filter to keep your database structure hidden and make URLs more readable. For example, if your users table has a user_passport_full_name column, exposing it directly in the API isn't ideal. Instead, you can assign a more user-friendly alias:

URL Query Example:

Configuration:

This pattern is applicable for all filters, sorts and includes

Advanced Features

Advanced Filters, Sorting, and Includes

For more complex filters, sorts, and includes like specifying ignored and default values, custom callback filters and more you can override the following methods in your Criteria class, these will be merged with the declared properties

Example Configuration

Refer to the Spatie Query Builder Documentation for more details on defining advanced filters, sorts, and includes.


Applying Criteria to a Model

Use the QueryableByCriteria trait in your model:

Querying Data

Passing Criteria to Scope

You can also pass a criteria class directly to the queryByCriteria scope. This allows you to merge additional criteria with the default criteria for flexibility and reusability:


Credits

This package is based on Spatie's Laravel Query Builder.

Testing

Run unit tests:

License

This package is open-source and licensed under the MIT License.


All versions of query-builder-criteria with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2|^8.3|^8.4
illuminate/contracts Version ^10.0||^11.0||^12.0
spatie/laravel-query-builder Version ^6.0
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 omaressaouaf/query-builder-criteria contains the following files

Loading the files please wait ....