forked from leantony/laravel-grid
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
71 lines (71 loc) · 1.65 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "leantony/laravel-grid",
"description": "A grid view for laravel, inspired by the yii2 grid widget",
"license": "MIT",
"type": "library",
"keywords": [
"leantony",
"bootstrap",
"laravel-grid",
"laravel",
"pjax",
"grid",
"laravel-5",
"laravel5",
"laravel6"
],
"homepage": "https://github.com/leantony/laravel-grid",
"authors": [
{
"name": "Antony [leantony] Chacha",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"illuminate/view": "^5.5|^6|^7",
"illuminate/support": "^5.5|^6|^7",
"illuminate/console": "^5.5|^6|^7",
"illuminate/contracts": "^5.5|^6|^7",
"illuminate/http": "^5.5|^6|^7",
"illuminate/database": "^5.5|^6|^7",
"illuminate/pagination": "^5.5|^6|^7"
},
"suggest": {
"maatwebsite/excel": "For exporting grid data as excel (~3.0)",
"barryvdh/laravel-dompdf": "For exporting grid data as PDF (^0.8.2)"
},
"require-dev": {
"phpunit/phpunit": "^8.3",
"orchestra/testbench": "~4.0",
"orchestra/testbench-dusk": "^4.5",
"phpunit/php-code-coverage": "^7.0",
"barryvdh/laravel-dompdf": "^0.8.2",
"maatwebsite/excel": "^3.0"
},
"autoload": {
"psr-4": {
"Leantony\\Grid\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Leantony\\Grid\\Providers\\GridServiceProvider"
],
"aliases": {
"Modal": "Leantony\\Grid\\Facades\\Modal"
}
},
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}