fourlabs / qbjs-parser
Parse JSON coming from jQuery QueryBuilder, into database queries.
Installs: 29 841
Dependents: 2
Suggesters: 0
Security: 0
Stars: 24
Watchers: 4
Forks: 16
Open Issues: 6
Requires
- php: >=7.0
- symfony/property-info: ~2.8|~3.0|~3.1|^4.0|^5.0
Requires (Dev)
This package is auto-updated.
Last update: 2024-11-11 04:51:53 UTC
README
Parse JSON coming from jQuery QueryBuilder, such as
{ "condition": "AND", "rules": [ { "id": "price", "field": "price", "type": "double", "input": "text", "operator": "less", "value": "10.25" } ] }
Installation
$ composer require fourlabs/qbjs-parser
Quick Tour
FL\QBJSParser\Serializer\JsonDeserializer::deserialize()
deserializes a JSON string into an instance ofFL\QBJSParser\Model\RuleGroup
- This
RuleGroup
object can then be parsed into something your ORM/ODM can use, to create a query. - Parsers live at
FL\QBJSParser\Parser
.
Available Parsers
Tests
To run the test suite, you need composer.
$ composer install $ phpunit
License
QBJSParser is licensed under the MIT license.