1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-09-24 03:28:22 +02:00
vichan/composer.json

65 lines
1.7 KiB
JSON
Raw Normal View History

2021-02-13 19:24:03 +01:00
{
"name": "vichan-devel/vichan",
"description": "vichan imageboard",
"type": "project",
2023-10-05 06:33:37 +02:00
"config": {
"platform": {
"php": "7.4"
2023-10-05 06:33:37 +02:00
}
},
2021-02-13 19:24:03 +01:00
"require": {
"php": ">=7.4",
2023-07-27 02:37:57 +02:00
"ext-mbstring": ">=7.4",
"ext-gd": ">=7.4",
"ext-pdo": ">=7.4",
2023-03-29 23:59:28 +02:00
"twig/twig": "^2.9",
"phpmyadmin/twig-i18n-extension": "^4.0",
2021-02-13 19:24:03 +01:00
"lifo/ip": "^1.0",
2023-03-29 23:59:28 +02:00
"gettext/gettext": "^5.5",
2021-02-13 19:24:03 +01:00
"mrclay/minify": "^2.1.6",
2021-11-13 01:24:34 +01:00
"geoip/geoip": "^1.17",
2024-06-06 03:00:24 +02:00
"dapphp/securimage": "^4.0",
"erusev/parsedown": "^1.7.4"
2021-02-13 19:24:03 +01:00
},
"autoload": {
"classmap": ["inc/"],
"files": [
"inc/bootstrap.php",
"inc/display.php",
"inc/template.php",
"inc/database.php",
"inc/events.php",
"inc/api.php",
"inc/mod/auth.php",
"inc/lock.php",
"inc/queue.php",
"inc/functions.php",
"inc/functions/net.php",
2024-04-30 12:48:02 +02:00
"inc/functions/num.php",
2024-04-30 12:34:39 +02:00
"inc/functions/format.php",
"inc/driver/http-driver.php",
"inc/driver/log-driver.php",
"inc/service/captcha-queries.php"
2021-02-13 19:24:03 +01:00
]
},
"license": "Tinyboard + vichan",
"authors": [
2021-02-14 10:20:10 +01:00
{
"name": "savetheinternet",
"homepage": "https://github.com/savetheinternet"
},
{
"name": "czaks",
"homepage": "https://github.com/czaks"
},
{
"name": "ctrlcctrlv",
"homepage": "https://github.com/ctrlcctrlv"
},
2021-02-13 19:24:03 +01:00
{
"name": "h00j",
2021-02-14 10:20:10 +01:00
"homepage": "https://github.com/h00j"
2021-02-13 19:24:03 +01:00
}
]
}