forked from savetheinternet/Tinyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1.25 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
{
"name": "circlepuller/tinyboard",
"description": "Tinyboard is a light-weight, fast, highly configurable and user-friendly imageboard software package released under a non-restrictive open-source license. It is written in PHP and has few dependencies.",
"type": "project",
"config": {
"platform": {
"php": "7.2.9"
}
},
"require": {
"ext-pdo": "*",
"ext-gd": "*",
"gettext/gettext": "^4.4",
"twig/twig": "^2.9",
"twig/extensions": "^1.5",
"geoip/geoip": "^1.16",
"mrclay/minify": "^3.0",
"awsumchan/ip": "^1.1",
"erusev/parsedown": "^1.7"
},
"license": "MIT",
"authors": [
{
"name": "Daniel Saunders",
"email": "dsaunders@dansaunders.me"
}
],
"suggest": {
"ext-imagick": "Allows the use of ImageMagick for image handling",
"ext-openssl": "Allows for enhanced security features through OpenSSL",
"ext-apcu": "Allows the use of APCu for cache storage",
"ext-redis": "Allows the use of Redis for cache storage",
"ext-memcached": "Allows the use of Memcached for cache storage",
"ext-xcache": "Allows the use of XCache for cache storage"
}
}