-
Notifications
You must be signed in to change notification settings - Fork 67
/
composer.json
41 lines (41 loc) · 1.04 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "timgws/query-builder-parser",
"homepage": "http://github.com/timgws/QueryBuilderParser",
"description": "Build complex Eloquent & QueryBuilder queries automatically when using jQuery-QueryBuilder",
"keywords": [
"ajax",
"eloquent",
"jquery",
"laravel",
"parser",
"query builder",
"sql",
"mongodb"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Tim Groeneveld",
"email": "[email protected]",
"homepage": "http://timg.ws"
}
],
"autoload": {
"psr-4": {
"timgws\\": "src/QueryBuilderParser/",
"timgws\\test\\": "tests/"
}
},
"minimum-stability": "dev",
"require": {
"illuminate/database": "^9.0||^8.0||^10.0"
},
"suggest": {
"jenssegers/mongodb": "Use QueryBuilderParser with MongoDB"
},
"require-dev": {
"phpunit/phpunit": "^9.5||^8.5||^7.0",
"mockery/mockery": "^1.3.1||^0.9.4"
}
}