forked from dcat-admin/grid-sortable
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.01 KB
/
composer.json
File metadata and controls
36 lines (36 loc) · 1.01 KB
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
{
"name": "dcat-admin-extension/grid-sortable",
"description": "Drag and drop sorting of grid rows for Dcat-Admin 2.0",
"type": "library",
"keywords": ["dcat-admin", "extension", "grid-sortable"],
"homepage": "https://github.com/dcat-admin-extension/grid-sortable",
"license": "MIT",
"authors": [
{
"name": "jqh",
"email": "841324345@qq.com"
},
{
"name": "Paweł Bukowski",
"email": "bukowski@crazyit.pl"
}
],
"require": {
"php": ">=7.1.0",
"dcat/laravel-admin": "~2.0",
"spatie/eloquent-sortable": "*"
},
"autoload": {
"psr-4": {
"Dcat\\Admin\\Extension\\GridSortable\\": "src/"
}
},
"extra": {
"dcat-admin": "Dcat\\Admin\\Extension\\GridSortable\\GridSortableServiceProvider",
"laravel": {
"providers": [
"Dcat\\Admin\\Extension\\GridSortable\\GridSortableServiceProvider"
]
}
}
}