forked from Kyslik/column-sortable
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·43 lines (43 loc) · 885 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
43
{
"name": "kyslik/column-sortable",
"description": "Package for handling column sorting in Laravel 6.x",
"keywords": [
"sortable",
"sorting",
"column",
"sort",
"laravel"
],
"license": "MIT",
"type": "package",
"authors": [
{
"name": "Martin Kiesel",
"email": "martin.kiesel@gmail.com",
"role": "Developer and maintainer"
}
],
"require": {
"php": ">=7.2",
"illuminate/support": "5.8.*|^6.0",
"illuminate/database": "5.8.*|^6.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"orchestra/testbench": "^4.0"
},
"autoload": {
"psr-4": {
"Kyslik\\ColumnSortable\\": "src/ColumnSortable/"
}
},
"extra": {
"laravel": {
"providers": [
"Kyslik\\ColumnSortable\\ColumnSortableServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}