-
-
Notifications
You must be signed in to change notification settings - Fork 131
/
composer.json
85 lines (85 loc) · 2.79 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
{
"name": "admidio/admidio",
"description": "Admidio is a free open source user management system for websites of organizations and groups.",
"type": "project",
"keywords": [
"admidio",
"management",
"organizations"
],
"license": "GPL-2.0-only",
"homepage": "https://www.admidio.org/",
"config": {
"platform": {
"php": "7.4.0"
}
},
"require": {
"php": "^7.4 || ^8.0",
"ext-gd": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-posix": "*",
"ext-simplexml": "*",
"ext-zip": "*",
"bjeavons/zxcvbn-php": "^1.2.0",
"eluceo/ical": "^2.0",
"ezyang/htmlpurifier": "^4.14",
"ifsnop/mysqldump-php": "^2.12",
"monolog/monolog": "^2.0",
"phpmailer/phpmailer": "^6.4",
"phpoffice/phpspreadsheet": "^1.18",
"ramsey/uuid": "^4.1",
"smarty/smarty": "^5.0",
"tecnickcom/tcpdf": "^6.2",
"twbs/bootstrap": "5.3.*",
"twbs/bootstrap-icons": "^1.11"
},
"suggest": {
"ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes",
"ext-mbstring": "",
"ext-pdo_mysql": "For MySQL/MariaDB database support",
"ext-pdo_pgsql": "For PostgreSQL database support"
},
"autoload": {
"psr-4": {
"Admidio\\": "src/"
},
"classmap": [
"adm_program/system/classes/",
"adm_program/libs/jquery-file-upload/server/php/",
"adm_program/libs/securimage/"
]
},
"archive": {
"exclude": [
"adm_my_files/*",
"!adm_my_files/.htaccess",
"!adm_my_files/index.html",
"!adm_my_files/config_example.php",
"!adm_my_files/ecard_templates",
"!adm_my_files/mail_templates",
"demo_data",
"!vendor/*",
"vendor/maennchen/zipstream-php/test",
"vendor/markbaker/complex/examples",
"vendor/markbaker/matrix/examples",
"vendor/smarty/smarty/changelog",
"vendor/smarty/smarty/demo",
"vendor/smarty/smarty/docs",
"vendor/tecnickcom/tcpdf/examples",
"vendor/tecnickcom/tcpdf/fonts",
"!vendor/tecnickcom/tcpdf/fonts/courier*.*",
"!vendor/tecnickcom/tcpdf/fonts/helvetica*.*",
"!vendor/tecnickcom/tcpdf/fonts/pdfa*.*",
"!vendor/tecnickcom/tcpdf/fonts/times*.*",
"vendor/twbs/bootstrap",
"!vendor/twbs/bootstrap/license",
"!vendor/twbs/bootstrap/dist",
"vendor/twbs/bootstrap-icons",
"!vendor/twbs/bootstrap-icons/license",
"!vendor/twbs/bootstrap-icons/font"
]
}
}