Criteria help you to declare rules to filter datasets.
Via Composer
$ composer require spaceonfire/criteria
use spaceonfire\Criteria\Criteria;
$criteria = new Criteria();
$criteria->where(Criteria::expr()->property('name', Criteria::expr()->equals('Ben')))
->orderBy(['lastName' => SORT_ASC])
->offset(50)
->limit(25);
Please see CHANGELOG for more information on what has changed recently.
Report issues and send Pull Requests in the main spaceonfire repository. Please see CONTRIBUTING and CODE_OF_CONDUCT for details.
The MIT License (MIT). Please see License File for more information.