-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 984 Bytes
/
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
{
"name": "laratips/sortable",
"description": "Package for handling column sorting in Laravel",
"type": "library",
"keywords": [
"sortable",
"sorting",
"column",
"sort",
"laravel"
],
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Arman Poghosyan",
"email": "[email protected]",
"role": "Developer and maintainer"
}
],
"require": {
"php": "^8.0",
"illuminate/container": "^8.0",
"illuminate/database": "^8.0",
"illuminate/http": "^8.0",
"illuminate/support": "^8.0",
"illuminate/view": "^8.0"
},
"autoload": {
"psr-4": {
"Laratips\\Sortable\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Laratips\\Sortable\\SortableServiceProvider"
]
}
}
}