-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.82 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.82 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
{
"name": "vitexsoftware/icinga-editor",
"description": "Editor of Icinga Configuration files",
"license": "GPL-2.0-or-later",
"version": "2.0.0",
"authors": [
{
"name": "vitex",
"email": "info@vitexsoftware.cz"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=8.0",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-curl": "*",
"vitexsoftware/ease-twbootstrap": "^1.0",
"league/commonmark": "^2.7.0",
"vitexsoftware/ease-fluentpdo": "^1.4",
"vitexsoftware/ease-core": "^1.49",
"vitexsoftware/ease-twbootstrap-widgets": "^1.1"
},
"autoload": {
"psr-4": {
"Icinga\\Editor\\": "src/classes/",
"Icinga\\Editor\\Engine\\": "src/classes/engine/",
"Icinga\\Editor\\UI\\": "src/classes/UI",
"Icinga\\Editor\\modules\\": "src/modules"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Ease\\": "vendor/vitexsoftware/ease-framework/tests/src/Ease",
"Test\\": "testing/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.0|^10.0|^11.0",
"robmorgan/phinx": "^0.16.0",
"datatables/datatables": "^1.10"
},
"scripts": {
"post-install-cmd": [
"php -r \"copy('vendor/datatables/datatables/media/js/dataTables.bootstrap.js', 'src/js/dataTables.bootstrap.js');copy('vendor/datatables/datatables/media/js/jquery.dataTables.js', 'src/js/jquery.dataTables.js');\""
],
"post-update-cmd": [
"php -r \"copy('vendor/datatables/datatables/media/js/dataTables.bootstrap.js', 'src/js/dataTables.bootstrap.js');copy('vendor/datatables/datatables/media/js/jquery.dataTables.js', 'src/js/jquery.dataTables.js');\""
]
}
}