-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
50 lines (50 loc) · 1.22 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
42
43
44
45
46
47
48
49
50
{
"name": "elnelsonperez/kendo-grid-parser",
"description": "A package to apply Kendo Grid filters to a query builder instance in Laravel.",
"license": "MIT",
"keywords": [
"kendo",
"laravel",
"kendo grid",
"laravel kendo",
"parser"
],
"authors": [
{
"name": "Nelson Perez",
"email": "me@nelsonperez.net"
}
],
"autoload": {
"psr-4": {
"ElNelsonPerez\\KendoGridParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ElNelsonPerez\\KendoGridParser\\Test\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"ElNelsonPerez\\KendoGridParser\\KendoGridParserServiceProvider"
]
}
},
"require": {
"php": ">=7.1.3",
"illuminate/database": "~5.6|~5.7|~5.8|^6.0"
},
"require-dev": {
"orchestra/testbench": "~3.6|~3.7|~3.8",
"phpunit/phpunit": "^7.0",
"the-tinderbox/clickhouse-builder": "~1.2"
},
"suggest": {
"the-tinderbox/clickhouse-builder" : "If you wish to use the ClickHouse adapter"
},
"scripts": {
"test": "phpunit"
}
}