-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.13 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
{
"name": "waldorfconnect/portal",
"type": "project",
"description": "Portal application serving as user-friendly LDAP front-end",
"homepage": "https://waldorfconnect.de",
"license": "MIT",
"require": {
"php": "^8.1",
"ext-exif": "*",
"ext-fileinfo": "*",
"ext-gd": "*",
"ext-iconv": "*",
"ext-ldap": "*",
"chillerlan/php-qrcode": "^5.0",
"codeigniter4/framework": "^4.0",
"composer/ca-bundle": "^1.3",
"directorytree/ldaprecord": "^3.0",
"guzzlehttp/guzzle": "^7.8",
"lfkeitel/phptotp": "^1.1",
"nyholm/psr7": "^1.8",
"phpmailer/phpmailer": "^6.8",
"ramsey/uuid": "^4.7",
"steverhoades/oauth2-openid-connect-server": "^2.6"
},
"require-dev": {
"fakerphp/faker": "^1.9",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^11.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"exclude-from-classmap": [
"**/Database/Migrations/**"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Support\\": "tests/_support"
}
},
"scripts": {
"test": "phpunit"
}
}