-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathcomposer.json
More file actions
84 lines (84 loc) · 2.16 KB
/
composer.json
File metadata and controls
84 lines (84 loc) · 2.16 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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name" : "mouf/html.widgets.evolugrid",
"description" : "This package contains the EvoluGrid widget. This is an HTML/Ajax datagrid that can be used to display data. It's main difference with other datagrids is that you can chage the set of columns dynamically depending on the paginated results you are looking at.",
"type" : "mouf-library",
"authors" : [{
"name" : "David Négrier",
"email" : "d.negrier@thecodingmachine.com",
"homepage" : "http://mouf-php.com"
}
],
"keywords" : [
"html",
"widget",
"evolugrid",
"datagrid",
"data",
"javscript"
],
"homepage" : "https://github.com/thecodingmachine/database.tdbm",
"license" : [
"MIT"
],
"require" : {
"php" : "^8.0",
"mouf/javascript.jquery.jquery" : "^2.1",
"mouf/database.querywriter" : "~4.0",
"mouf/mvc.splash-common" : "~10.0",
"mouf/utils.common.sortable-interface" : "~1.0",
"mouf/html.utils.weblibrarymanager" : ">=2.0, <4.0",
"mouf/utils.common.paginable-interface" : "~1.0",
"mouf/utils.common.conditioninterface" : "2.*",
"twig/twig" : "^2",
"mouf/javascript.historyjs" : "^1.8",
"mouf/html.htmlelement" : "^2.0",
"mouf/utils.common.formatters" : "~3.0",
"mouf/utils.value.common-value" : "~1.0",
"mouf/utils.value.value-interface" : "~1.0",
"mouf/utils.common.url-interface" : "~1.0",
"beberlei/porpaginas" : "^1.0",
"symfony/property-access": "^3.0"
},
"autoload" : {
"psr-0" : {
"Mouf" : "src/"
}
},
"minimum-stability" : "dev",
"prefer-stable" : true,
"extra" : {
"mouf" : {
"install" : [{
"file" : "install.php",
"type" : "file"
}
],
"logo" : "logo.png",
"doc" : [{
"title" : "Javascript stand-alone mode",
"children" : [{
"title" : "Evolugrid options",
"url" : "doc/options.md"
}
],
"url" : "doc/evolugrid_js.md"
}, {
"title" : "PHP mode",
"url" : "doc/evolugrid_php.md"
}, {
"title" : "Search filters",
"url" : "doc/search_filters.md"
}
],
"require-admin" : [
"src/EvolugridAdmin.php"
]
}
},
"config": {
"allow-plugins": {
"mouf/mouf-installer": true,
"mouf/html.utils.weblibrarymanager.component-installer": true
}
}
}