-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathcomposer.json
60 lines (60 loc) · 1.57 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
{
"name": "nullref/yii2-datatables",
"description": "Yii2 Extension for DataTables jQuery plug-in",
"type": "yii2-extension",
"homepage": "https://github.com/NullRefExcep/yii2-datatables",
"keywords": [
"yii2",
"yii",
"widget",
"jquery",
"datatable",
"datatables",
"plugin",
"jQuery"
],
"license": "MIT",
"authors": [
{
"name": "Serhiy Vinichuk",
"email": "[email protected]"
},
{
"name": "Dmytro Karpovych",
"email": "[email protected]"
},
{
"name": "Radon8472",
"email": "[email protected]",
"homepage": "https://github.com/Radon8472",
"role": "Contributor"
},
{
"name": "Oleksandr Lynnyk",
"email": "[email protected]",
"homepage": "https://github.com/alxlnk",
"role": "Contributor"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.5.0",
"yiisoft/yii2": "~2.0.13",
"bower-asset/datatables": "~1.10.15",
"bower-asset/datatables-plugins": "~1.10.15",
"bower-asset/datatables.net-bs4": "~1.10.15",
"npm-asset/datatables.net-bs5": "~1.10.15"
},
"autoload": {
"psr-4": {
"nullref\\datatable\\": "src/"
}
},
"config": {
"fxp-asset": {
"installer-paths": {
"bower-asset-library": "vendor/bower"
}
}
}
}