1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-28 01:10:51 +01:00
vichan/composer.json

66 lines
1.7 KiB
JSON
Raw Permalink 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",
2024-06-06 03:00:24 +02:00
"dapphp/securimage": "^4.0",
2024-11-15 17:11:47 +01:00
"erusev/parsedown": "^1.7.4",
"geoip2/geoip2": "^2.13"
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",
2024-10-14 13:55:58 +02:00
"inc/functions/dice.php",
"inc/functions/format.php",
"inc/functions/net.php",
2024-04-30 12:48:02 +02:00
"inc/functions/num.php",
2024-08-16 18:24:48 +02:00
"inc/functions/theme.php",
2024-11-15 17:11:47 +01:00
"inc/functions/ip.php",
"inc/context.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
}
]
}