├── .php-cs-fixer.dist.php ├── .php-cs.dist.php ├── LICENSE.md ├── README.md ├── composer.json ├── config └── pipeline-query-collection.php ├── database └── factories │ ├── RelatedModelFactory.php │ └── TestModelFactory.php ├── phpunit.xml.dist.bak ├── pint.json └── src ├── BaseFilter.php ├── BasePipe.php ├── BaseRangeFilter.php ├── BaseSort.php ├── BitwiseFilter.php ├── BooleanFilter.php ├── Concerns ├── Filterable.php └── Sortable.php ├── Contracts ├── CanFilterContract.php └── CanSortContract.php ├── DateFromFilter.php ├── DateToFilter.php ├── Enums ├── MotionEnum.php ├── TrashOptionEnum.php └── WildcardPositionEnum.php ├── ExactFilter.php ├── FieldsRelativeFilter.php ├── PipelineQueryCollectionServiceProvider.php ├── RangeFromFilter.php ├── RangeToFilter.php ├── RelationFilter.php ├── RelativeFilter.php ├── ScopeFilter.php ├── Sort.php ├── SortAscending.php ├── SortDescending.php └── TrashFilter.php /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /.php-cs.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/.php-cs.dist.php -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/composer.json -------------------------------------------------------------------------------- /config/pipeline-query-collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/config/pipeline-query-collection.php -------------------------------------------------------------------------------- /database/factories/RelatedModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/database/factories/RelatedModelFactory.php -------------------------------------------------------------------------------- /database/factories/TestModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/database/factories/TestModelFactory.php -------------------------------------------------------------------------------- /phpunit.xml.dist.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/phpunit.xml.dist.bak -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/pint.json -------------------------------------------------------------------------------- /src/BaseFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/src/BaseFilter.php -------------------------------------------------------------------------------- /src/BasePipe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/src/BasePipe.php -------------------------------------------------------------------------------- /src/BaseRangeFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/src/BaseRangeFilter.php -------------------------------------------------------------------------------- /src/BaseSort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/src/BaseSort.php -------------------------------------------------------------------------------- /src/BitwiseFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/src/BitwiseFilter.php -------------------------------------------------------------------------------- /src/BooleanFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/src/BooleanFilter.php -------------------------------------------------------------------------------- /src/Concerns/Filterable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/src/Concerns/Filterable.php -------------------------------------------------------------------------------- /src/Concerns/Sortable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/src/Concerns/Sortable.php -------------------------------------------------------------------------------- /src/Contracts/CanFilterContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/src/Contracts/CanFilterContract.php -------------------------------------------------------------------------------- /src/Contracts/CanSortContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/src/Contracts/CanSortContract.php -------------------------------------------------------------------------------- /src/DateFromFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/src/DateFromFilter.php -------------------------------------------------------------------------------- /src/DateToFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/src/DateToFilter.php -------------------------------------------------------------------------------- /src/Enums/MotionEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/src/Enums/MotionEnum.php -------------------------------------------------------------------------------- /src/Enums/TrashOptionEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/src/Enums/TrashOptionEnum.php -------------------------------------------------------------------------------- /src/Enums/WildcardPositionEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/src/Enums/WildcardPositionEnum.php -------------------------------------------------------------------------------- /src/ExactFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/src/ExactFilter.php -------------------------------------------------------------------------------- /src/FieldsRelativeFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/src/FieldsRelativeFilter.php -------------------------------------------------------------------------------- /src/PipelineQueryCollectionServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/src/PipelineQueryCollectionServiceProvider.php -------------------------------------------------------------------------------- /src/RangeFromFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/src/RangeFromFilter.php -------------------------------------------------------------------------------- /src/RangeToFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/src/RangeToFilter.php -------------------------------------------------------------------------------- /src/RelationFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/src/RelationFilter.php -------------------------------------------------------------------------------- /src/RelativeFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/src/RelativeFilter.php -------------------------------------------------------------------------------- /src/ScopeFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/src/ScopeFilter.php -------------------------------------------------------------------------------- /src/Sort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/src/Sort.php -------------------------------------------------------------------------------- /src/SortAscending.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/src/SortAscending.php -------------------------------------------------------------------------------- /src/SortDescending.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/src/SortDescending.php -------------------------------------------------------------------------------- /src/TrashFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l3aro/pipeline-query-collection/HEAD/src/TrashFilter.php --------------------------------------------------------------------------------