forked from fluxapps/UdfEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (44 loc) · 956 Bytes
/
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
{
"name": "plugin/udf-editor",
"version": "2.0.0",
"description": "ILIAS UDFEditor Plugin",
"type": "plugin",
"license": "GPL-3.0+",
"authors": [
{
"name": "Martin Studer",
"email": "[email protected]",
"homepage": "https://fluxlabs.ch",
"role": "Maintainer, Developer"
},
{
"name": "mbeym",
"email": "[email protected]"
}
],
"minimum-stability": "beta",
"prefer-stable": true,
"require": {
"php": ">=8.1 <8.3"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"friendsofphp/php-cs-fixer": "^3.12",
"captainhook/captainhook": "^5.10"
},
"autoload": {
"psr-4": {
"srag\\Plugins\\UdfEditor\\": "src/",
"srag\\Plugins\\UdfEditor\\Libs\\": "libs/"
},
"classmap": [
"./classes/",
"./libs"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"classmap-authoritative": true
}
}