-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·59 lines (59 loc) · 1.48 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
{
"name": "spyfly/tst2lrs",
"description": "This is an ILIAS-Plugin for exporting test progress and results data to a LRS.",
"version": "0.2.0",
"extra": {
"ilias_plugin": {
"id": "tst2lrs",
"name": "Tst2Lrs",
"ilias_min_version": "6.0",
"ilias_max_version": "7.999",
"slot": "Services/EventHandling/EventHook"
}
},
"type": "project",
"keywords": [
"ILIAS",
"Plugin"
],
"authors": [
{
"name": "Sebastian Heiden",
"email": "test2lrs@spyfly.xyz",
"role": "Developer"
}
],
"support": {
"email": "test2lrs@spyfly.xyz"
},
"require": {
"php": ">=7.0",
"srag/activerecordconfig": ">=0.1.0",
"srag/custominputguis": ">=0.1.0",
"srag/dic": ">=0.1.0",
"srag/generateplugininfoshelper": ">=0.1.0",
"srag/librariesnamespacechanger": ">=0.1.0",
"srag/removeplugindataconfirm": ">=0.1.0"
},
"autoload": {
"psr-4": {
"spyfly\\Plugins\\Tst2Lrs\\": "src/"
},
"classmap": [
"classes/",
"src/Config/class.ConfigCtrl.php"
]
},
"config": {
"classmap-authoritative": true,
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"pre-autoload-dump": [
"srag\\LibrariesNamespaceChanger\\LibrariesNamespaceChanger::rewriteLibrariesNamespaces",
"srag\\LibrariesNamespaceChanger\\PHP72Backport::PHP72Backport",
"srag\\GeneratePluginInfosHelper\\Tst2Lrs\\GeneratePluginPhpAndXml::generatePluginPhpAndXml"
]
}
}