Skip to content

Commit

Permalink
Added ILIKE operator and updated dependencies for testing on php8 (#52)
Browse files Browse the repository at this point in the history
Co-authored-by: Dmitry Kopylov <[email protected]>
  • Loading branch information
dikopylov and Dmitry Kopylov authored Nov 17, 2021
1 parent 1a68a1e commit 9518a19
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
},
"require-dev": {
"illuminate/database": "5.*",
"phpunit/phpunit": "^6.1",
"mockery/mockery": "^0.9.9",
"phpunit/phpunit": "^6.1|^9.5",
"mockery/mockery": "^0.9.9|^1.4",
"illuminate/events": "5.*",
"illuminate/config": "5.*",
"illuminate/pagination": "5.*"
Expand Down
1 change: 1 addition & 0 deletions src/Query/Enums/Operator.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ final class Operator extends Enum
public const LESS = '<';
public const GREATER = '>';
public const LIKE = 'LIKE';
public const ILIKE = 'ILIKE';
public const NOT_LIKE = 'NOT LIKE';
public const BETWEEN = 'BETWEEN';
public const NOT_BETWEEN = 'NOT BETWEEN';
Expand Down

0 comments on commit 9518a19

Please sign in to comment.