-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.54 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.54 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
{
"authors" : [{
"name" : "stingray-11"
}
],
"name" : "irondrive/andromeda-server",
"description" : "Andromeda API server",
"license" : "SSPL-1.0",
"config": {
"platform": {
"php": "8.1.0"
},
"allow-plugins": {
"phpstan/extension-installer": false
}
},
"require" : {
"php" : ">=8.1",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-sodium": "*",
"phpmailer/phpmailer": "^6.0",
"phpseclib/phpseclib" : "^3.0.6",
"aws/aws-sdk-php": "^3.0",
"pragmarx/google2fa": "^8.0"
},
"suggest": {
"ext-pdo_mysql": "For MySQL databases",
"ext-mysqli": "For MySQL databases",
"ext-pdo_sqlite": "For SQLite databases",
"ext-sqlite3": "For SQLite databases",
"ext-pdo_pgsql": "For Postgresql databases",
"ext-pgsql": "For Postgresql databases",
"ext-imap": "For IMAP authentication",
"ext-ldap": "For LDAP authentication",
"ext-ftp": "For FTP authentication and the FTP storage backend",
"ext-smbclient": "For the SMB storage backend",
"ext-simplexml": "For the S3 storage backend",
"ext-dom": "For the S3 storage backend"
},
"require-dev": {
"phpmetrics/phpmetrics": "^2.0",
"phpunit/phpunit": "^9.5",
"code-lts/doctum": "^5.4",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-strict-rules": "^1.4",
"lipemat/phpstan-wordpress": "^3.4"
}
}