Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Apfelfrisch committed Oct 21, 2023
1 parent fd7bac1 commit 8ea16b2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
return (new PhpCsFixer\Config())
->setRules([
'@PSR12' => true,
'new_with_braces' => [],
'new_with_parentheses' => [],
'array_syntax' => ['syntax' => 'short'],
'ordered_imports' => ['sort_algorithm' => 'alpha'],
'no_unused_imports' => true,
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ This Package provides a Framework agnostic Query Filter wich allows you to filte

I was searching for a query-filter that separates the criteria builder from the SQL builder, this way the criteria can be created in one location and then passed to another, which is useful for adding them into repositories. Additionally, I needed the capability to write custom QueryBuilderAdapter for different implementations, mainly for using it with In-Memory Repositories for testing purposes.

## Installation

`composer require apfelfrisch/query-filter`

## Basic Usage

### Filter Users with the Name John
Expand Down

0 comments on commit 8ea16b2

Please sign in to comment.