-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.12 KB
/
composer.json
File metadata and controls
38 lines (38 loc) · 1.12 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
{
"name": "forkbb/transformer",
"description": "Transformer is a script to convert/merge another forum's database to/with ForkBB.",
"homepage": "https://forkbb.ru",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Visman",
"email": "mio.visman@yandex.ru",
"homepage": "https://github.com/MioVisman"
}
],
"autoload": {
"psr-4": {
"ForkBB\\": "app/"
}
},
"require": {
"php": ">=8.0.0",
"ext-mbstring": "*",
"ext-fileinfo": "*",
"ext-intl" : "*",
"ext-json": "*",
"ext-pdo": "*",
"miovisman/parserus": "^1.5.0",
"miovisman/normemail": "^1.0.0",
"psr/simple-cache": "^3",
"psr/log": "^3",
"miovisman/jevix": "^2.3.0"
},
"suggest": {
"ext-openssl": "Needed to send email via smtp server using SSL/TLS.",
"ext-imagick": "(or ext-gd) Needed for to upload avatars (and images).",
"ext-gd": "(or ext-imagick) Needed for to upload avatars (and images).",
"ext-curl": "Needed for OAuth."
}
}