forked from Nayjest/Grids
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.47 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
51
52
53
54
55
{
"name": "thenandan/grids",
"authors": [
{
"name": "Keshari Nandan",
"email": "[email protected]",
"role": "Developer"
}
],
"description": "Grids for Laravel 5+ frameworks",
"keywords": ["grid", "tables", "html", "laravel", "database", "eloquent", "bootstrap", "laravel-5", "laravel5"],
"type": "laravel-library",
"license": "proprietary",
"homepage": "https://github.com/thenandan/grids",
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"secure-http": false,
"preferred-install": {
"*": "dist"
},
"github-protocols": [
"git",
"https"
],
"discard-changes": true,
"optimize-autoloader": true,
"classmap-authoritative": true
},
"require": {
"php": ">=7.1.0",
"laravelcollective/html": "v6.*",
"illuminate/support": ">=4.2",
"nayjest/builder": "~2"
},
"require-dev": {
"roave/security-advisories": "dev-master"
},
"suggest": {
"laravelcollective/html": "Required to work with Laravel 5.X",
"maatwebsite/excel": "Required to work with Excel export component"
},
"autoload": {
"psr-4": {
"TheNandan\\Grids\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"TheNandan\\Grids\\GridsServiceProvider"
]
}
}
}