Download the PHP package getmaple/laravel-query-builder without Composer

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

Easily build Eloquent queries from API requests

Latest Version on Packagist Build Status StyleCI Quality Score Total Downloads

This package allows you to filter, sort and include eloquent relations based on a request. The QueryBuilder used in this package extends Laravel's default Eloquent builder. This means all your favorite methods and macros are still available. Query parameter names follow the JSON API specification as closely as possible.

Basic usage

Filtering an API request: /users?filter[name]=John:

Requesting relations from an API request: /users?include=posts:

Works together nicely with existing queries:

Sorting an API request: /users?sort=name:

Have a look at the usage section below for advanced examples and features.

Installation

You can install the package via composer:

You can optionally publish the config file with:

This is the contents of the published config file:

Usage

Including relationships

The include query parameter will load any Eloquent relation on the results collection. By default, no includes are allowed. All includes must be specified using allowedIncludes().

You can load multiple relationship by separating them with a comma:

You can also pass in an array of includes to the allowedIncludes() method.

You can load nested relationships using .:

When trying to include relationships that have not been allowed using allowedIncludes() an InvalidIncludeQuery exception will be thrown.

Relation/include names will be converted to camelCase when looking for the corresponding relationship on the model. This means /users?include=blog-posts will try to load the blogPosts() relationship on the User model.

Once the relationships are loaded on the results collection you can include them in your response by using Eloquent API resources and conditional relationships.

Filtering

The filter query parameters can be used to filter results by partial property value, exact property value or if a property value exists in a given array of values. You can also specify custom filters for more advanced queries.

By default, no filters are allowed. All filters have to be specified using allowedFilters(). When trying to filter on properties that have not been allowed using allowedFilters() an InvalidFilterQuery exception will be thrown.

You can also pass in an array of filters to the allowedFilters() method.

You can specify multiple matching filter values by passing a comma separated list of values:

Property Column Alias

It can be useful to expose properties for filtering, that do not share the exact naming of your database column. If you wanted to allow filtering on columns that may have a prefix in the database, you can use the following notation.

Exact filters

When filtering models based on their IDs, a boolean value or a literal string, you'll want to use exact filters. This way /users?filter[id]=1 won't match all users containing the digit 1 in their ID.

Exact filters can be added using Spatie\QueryBuilder\Filter::exact('property_name') in the allowedFilters() method.

The query builder will automatically map 'true' and 'false' as booleans and a comma separated list of values as an array:

Scope filters

Sometimes you'll want to build more advanced filtering queries. This is where scope filters and custom filters come in handy.

Scope filters allow you to easily add local scopes to your query by adding filters to the URL.

Consider the following scope on your model:

To filter based on the startsBefore scope simply add it to the allowedFilters on the query builder:

The following filter will now add the startsBefore scope to the underlying query:

You can even pass multiple parameters to the scope by passing a comma separated list to the filter:

Custom filters

You can specify custom filters using the Filter::custom() method. Custom filters are simple, invokable classes that implement the \Spatie\QueryBuilder\Filters\Filter interface. This way you can create any query your heart desires.

For example:

Ignored values for filters

You can specify a set of ignored values for every filter. This allows you to not apply a filter when these values are submitted.

The ignore() method takes one or more values, where each may be an array of ignored values. Each of the following calls are valid:

Given an array of values to filter for, only the subset of non-ignored values get passed to the filter. If all values are ignored, the filter does not get applied.

Sorting

The sort query parameter is used to determine by which property the results collection will be ordered. Sorting is ascending by default. Adding a hyphen (-) to the start of the property name will reverse the results collection.

By default, all model properties can be used to sort the results. However, you can use the allowedSorts method to limit which properties are allowed to be used in the request.

When trying to sort by a property that's not specified in allowedSorts() an InvalidSortQuery exception will be thrown.

To define a default sort parameter that should be applied without explicitly adding it to the request, you can use the defaultSort method.

You can use - if you want to have the default order sorted descendingly.

You can also pass in an array of sorts to the allowedSorts() method.

You can sort by multiple properties by separating them with a comma:

Using an alias for sorting

There may be occasions where it is not appropriate to expose the column name to the user.

Similar to using an alias when filtering you can do this with for sorts as well.

The column name can be passed as optional parameter and defaults to the property string.

Selecting specific columns

Sometimes you'll want to fetch only a couple fields to reduce the overall size of your SQL query. This can be done using the fields query parameter. The following fetch only the users' id and name

The SQL query will look like this:

Using the allowedFields method you can limit which fields (columns) are allowed to be queried in the request.

When trying to select a column that's not specified in allowedFields() an InvalidFieldQuery exception will be thrown.

Selecting fields for included models works the same way. This is especially useful when including entire relationships when you only need a couple of columns. Consider the following example:

All posts will be fetched including only the name of the author.

Append attributes

Sometimes you will want to append some custom attributes into result from a Model. This can be done using the append parameter.

Of course you can pass a list of attributes to be appended.

Other query methods

As the QueryBuilder extends Laravel's default Eloquent query builder you can use any method or macro you like. You can also specify a base query instead of the model FQCN:

Pagination

This package doesn't provide any methods to help you paginate responses. However as documented above you can use Laravel's default paginate() method.

If you want to completely adhere to the JSON API specification you can also use our own spatie/json-api-paginate!

Building queries at the front end

If you use Vue, you might be interested in the vue-api-query package by Robson Tenório.

Testing

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Postcardware

You're free to use this package, but if it makes it to your production environment we highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using.

Our address is: Spatie, Samberstraat 69D, 2060 Antwerp, Belgium.

We publish all received postcards on our company website.

Credits

Support us

Spatie is a webdesign agency based in Antwerp, Belgium. You'll find an overview of all our open source projects on our website.

Does your business depend on our contributions? Reach out and support us on Patreon. All pledges will be dedicated to allocating workforce on maintenance and new awesome stuff.

License

The MIT License (MIT). Please see License File for more information.


All versions of laravel-query-builder with dependencies

PHP Build Version
Package Version
Requires php Version ^7.1
illuminate/database Version ~5.6.34|~5.7.0|~5.8.0
illuminate/http Version ~5.6.34|~5.7.0|~5.8.0
illuminate/support Version ~5.6.34|~5.7.0|~5.8.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 getmaple/laravel-query-builder contains the following files

Loading the files please wait ....