endeavourplatforms / qbjs-parser
Parse JSON coming from jQuery QueryBuilder, into database queries.
1.0.0
2023-03-22 10:43 UTC
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: 2025-03-21 16:53:48 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.