forked from srsolutionsag/UserTakeOver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.85 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
{
"name": "srag/plugins/usertakeover",
"description": "ILIAS UserTakeOver plugin",
"type": "project",
"license": "GPL-3.0+",
"keywords": [
"ILIAS",
"Plugin",
"user",
"role"
],
"homepage": "https://github.com/studer-raimann/UserTakeOver",
"authors": [
{
"name": "studer + raimann ag - Team Core",
"email": "[email protected]",
"homepage": "https://studer-raimann.ch",
"role": "Developer"
}
],
"support": {
"email": "[email protected]"
},
"autoload": {
"psr-4": {
"srag\\Plugins\\UserTakeOver\\": "src/"
},
"classmap": [
"./classes/",
"./src/UI",
"../../../../../../../Services/ActiveRecord/class.ActiveRecord.php",
"../../../../../../../Services/Component/classes/class.ilPluginConfigGUI.php",
"../../../../../../../Services/Exceptions/classes/class.ilException.php",
"../../../../../../../Services/Form/classes/class.ilMultiSelectInputGUI.php",
"../../../../../../../Services/Form/classes/class.ilPropertyFormGUI.php",
"../../../../../../../Services/UIComponent/classes/class.ilUIHookPluginGUI.php",
"../../../../../../../Services/UIComponent/classes/class.ilUserInterfaceHookPlugin.php",
"../../../../../../../Services/UICore/classes/class.ilTemplate.php",
"../../../../../../../Services/User/classes/class.ilObjUser.php"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"classmap-authoritative": true
},
"require": {
"srag/activerecordconfig": ">=0.1.0",
"srag/custominputguis": ">=0.1.0",
"srag/dic": ">=0.1.0",
"srag/librariesnamespacechanger": ">=0.1.0",
"srag/removeplugindataconfirm": ">=0.1.0"
},
"scripts": {
"pre-autoload-dump": "srag\\LibrariesNamespaceChanger\\LibrariesNamespaceChanger::rewriteLibrariesNamespaces"
}
}