forked from ILIAS-eLearning/ILIAS
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·109 lines (109 loc) · 2.86 KB
/
composer.json
File metadata and controls
executable file
·109 lines (109 loc) · 2.86 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "ilias/ilias",
"description": "ILIAS",
"license": "GPL v3",
"authors": [],
"config": {
"optimize-autoloader": true,
"vendor-dir": "./vendor/composer/vendor",
"allow-plugins": {
"cweagans/composer-patches": true,
"captainhook/plugin-composer": true,
"simplesamlphp/composer-module-installer": false,
"simplesamlphp/composer-xmlprovider-installer": false
}
},
"scripts": {
"post-autoload-dump": [
"@php cli/build_bootstrap.php components/ILIAS/Setup/resources/dependency_resolution.php setup components/ILIAS/Init/resources/dependency_resolution.php default",
"@php cli/setup.php build --yes"
],
"pre-install-cmd": [
"mkdir -p public/Customizing/global/plugins"
],
"post-install-cmd": [
"@php vendor/composer/rmdirs.php"
],
"post-update-cmd": [
"@php vendor/composer/rmdirs.php"
],
"test-php-all": [
"./vendor/composer/vendor/bin/phpunit -c ./components/ILIAS/PHPUnit/config/PhpUnitConfig.xml --colors=always --disallow-todo-tests"
],
"test-php": [
"./scripts/PHPUnit/run_tests.sh"
],
"rector": [
"./vendor/composer/vendor/bin/rector process --config ./scripts/Rector/basic_rector.php --no-diffs"
]
},
"require": {
"php": ">=8.3 <8.5",
"ext-gd": "*",
"ext-dom": "*",
"ext-xsl": "*",
"ext-curl": "*",
"ext-json": "*",
"ext-simplexml": "*",
"ext-libxml": "*",
"ext-xml": "*",
"ext-zip": "*",
"ext-imagick": "*",
"celtic/lti": "^5.0.0",
"dflydev/fig-cookies": "v3.1.0",
"ezyang/htmlpurifier": "^4.18",
"filp/whoops": "^2.16",
"firebase/php-jwt": "*",
"guzzlehttp/psr7": "2.7.0",
"ifsnop/mysqldump-php": "2.11",
"james-heinrich/getid3": "^1.9.23",
"league/commonmark": "2.5.3",
"league/flysystem": "3.28.0",
"monolog/monolog": "^3.9",
"mustache/mustache": "^2.14",
"phpmailer/phpmailer": "^6.9",
"phpoffice/phpspreadsheet": "^3.5",
"pimple/pimple" : "^3.0",
"ramsey/uuid": "^4.7",
"sabre/dav": "4.6.0",
"seld/jsonlint": "^1.11",
"simplesamlphp/simplesamlphp": "^2.3.7",
"symfony/console" : "^6.4"
},
"require-dev": {
"captainhook/captainhook": "^5.24",
"friendsofphp/php-cs-fixer": "^3.65",
"mikey179/vfsstream": "^1.6",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^11.5"
},
"autoload": {
"psr-4" : {
"ILIAS\\Scripts\\" : "./scripts"
},
"classmap": [
"./public/Customizing/global/plugins",
"./components/ILIAS",
"./vendor/ilias",
"./components/ILIAS/soap",
"./components/ILIAS/setup_/classes"
],
"exclude-from-classmap": [
"./components/ILIAS/Migration",
"./*/*/lib",
"./Customizing/**/vendor",
"./public/Customizing/**/vendor",
"./components/ILIAS/setup_/sql",
"./cli/setup.php",
"./components/ILIAS/setup_/client.master.ini.php",
"./components/ILIAS/setup_/ilias.master.ini.php"
]
},
"extra": {
"patches": {
"imsglobal/lti": {
"ILIAS LTI Patches": "./vendor/composer/patches/lti.patch"
}
}
}
}