forked from ILIAS-eLearning/ILIAS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·114 lines (114 loc) · 3.01 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
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
110
111
112
113
114
{
"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/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": "*",
"firebase/php-jwt": "*",
"apereo/phpcas": "^1.6.1",
"league/commonmark": "^2.4",
"ramsey/uuid": "^4.4.0",
"geshi/geshi": "^1.0.9.1",
"james-heinrich/getid3": "^1.9.23",
"mustache/mustache": "^2.14",
"ifsnop/mysqldump-php": "2.10",
"seld/jsonlint": "^1.10",
"pimple/pimple": "^3.0",
"filp/whoops": "^2.15.4",
"cweagans/composer-patches": "^1.7",
"ezyang/htmlpurifier": "^4.17",
"phpmailer/phpmailer": "^6.8",
"guzzlehttp/psr7": "^2.6.1",
"league/flysystem": "^3.0",
"sabre/dav": "^4.5",
"dflydev/fig-cookies": "^3.0",
"symfony/yaml": "^6.4",
"symfony/console": "^6.4",
"simplesamlphp/simplesamlphp": "^2.2.0",
"phpunit/phpunit": "^10.5",
"monolog/monolog": "^2.9.3",
"phpoffice/phpspreadsheet": "^2.2",
"celtic/lti": "^5.0.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.40",
"phpstan/phpstan": "^1.10",
"mikey179/vfsstream": "^1.6",
"captainhook/captainhook": "^5.16",
"captainhook/plugin-composer": "^5.3"
},
"autoload": {
"psr-4" : {
"ILIAS\\Scripts\\" : "./scripts"
},
"classmap": [
"./public/Customizing/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"
}
}
}
}