dwsla/deal-qsapi

This package is abandoned and no longer maintained. No replacement package was suggested.

Deal - QSAPI: A Query String API component

1.0.0 2014-01-20 09:24 UTC

This package is not auto-updated.

Last update: 2018-06-08 04:37:57 UTC


README

Deal-QSAPI is a PHP-based query-string parser package for API's that allows a client to specify:

  • filter conditions
  • field-limiting
  • pagination
  • ordering

It is extensible using different engines and exporters.

Requirements

  • PHP 5.3

Installation

Using Composer, add the following to your project's composer.json:

{
    "repositories" : [
        {
            "type" : "vcs",
            "url" : "https://github.com/dwsla/deal-qsapi.git"
        }
    ],

    "require" : {
        "deal-qsapi" : "dev-master"
    }
}

Usage

For Devs

For Clients