-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
46 lines (46 loc) · 1.33 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
{
"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",
"minimum-stability": "dev",
"authors": [
{
"name": "Visman",
"email": "mio.visman@yandex.ru",
"homepage": "https://github.com/MioVisman"
}
],
"autoload": {
"psr-4": {
"ForkBB\\": "app/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/MioVisman/dirk"
}
],
"require": {
"php": ">=8.0.0",
"ext-mbstring": "*",
"ext-fileinfo": "*",
"ext-intl" : "*",
"ext-json": "*",
"ext-pdo": "*",
"artoodetoo/dirk": "dev-visman",
"miovisman/parserus": "^1.2.1",
"miovisman/normemail": "dev-master",
"psr/simple-cache": "^1.0.1",
"psr/log": "^1.1.3",
"miovisman/jevix": "^2.2.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."
}
}