ifnot / api-filtering
There is no license information available for the latest version (dev-master) of this package.
Simple API filtering specifications for eloquent.
dev-master
2020-07-29 13:41 UTC
Requires
- php: >=5.4
- illuminate/database: ^5.0|^6.0|^7.0|^8.0
Requires (Dev)
- orchestra/testbench: ~3.0
This package is auto-updated.
Last update: 2024-10-29 04:53:18 UTC
README
Api Filtering is a laravel package allowing you to filter resources (based on eloquent models) through http parameters.
This package regroups the Server Side filtering mechanism and a simple Client Side (PHP) builder for building http query parameters (it can helps you testing, even query other apis !).
Specifications
Actually there is one specification :
- AFS1 (Api Filtering Specification 1) : Define the supported http parameters for filtering resources.
Installation
Require the package using composer :
composer require ifnot/api-filtering
Refer to Server Side or Client Side (PHP) for usage.