-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (50 loc) · 1.15 KB
/
composer.json
File metadata and controls
51 lines (50 loc) · 1.15 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
{
"name": "fluxapp/udf-editor",
"version": "2.0.0",
"description": "ILIAS UDFEditor Plugin",
"keywords": [
"ilias",
"fluxlabs",
"udf-editor"
],
"type": "plugin",
"license": "GPL-3.0+",
"authors": [
{
"name": "Martin Studer",
"email": "martin@fluxlabs.ch",
"homepage": "https://fluxlabs.ch",
"role": "Maintainer, Developer"
}
],
"support": {
"issues": "https://git.fluxlabs.ch"
},
"minimum-stability": "beta",
"prefer-stable": true,
"require": {
"php": ">=7.4",
"srag/librariesnamespacechanger": "0.16.1",
"srag/dic": "0.34.1",
"srag/notifications4plugin": "5.7.4",
"srag/custominputguis": "0.43.1"
},
"autoload": {
"classmap": [
"./classes/",
"./src/"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"classmap-authoritative": true
},
"scripts": {
"pre-autoload-dump": [
"vendor/srag/notifications4plugin/bin/twig_php74_patch.php",
"srag\\LibrariesNamespaceChanger\\LibrariesNamespaceChanger::rewriteLibrariesNamespaces",
"srag\\LibrariesNamespaceChanger\\PHP72Backport::PHP72Backport"
]
}
}