-
Notifications
You must be signed in to change notification settings - Fork 61
/
composer.json
60 lines (60 loc) · 1.38 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "elkarte/elkarte",
"description": "ElkArte PHP-based community discussion forum.",
"version": "2.0 dev",
"type": "project",
"keywords": ["elkarte", "forum", "discussion", "php", "community"],
"homepage": "https://www.elkarte.net",
"readme": "https://github.com/elkarte/Elkarte/README.md",
"license": "BSD-3-Clause",
"authors": [
{
"name": "ElkArte Forum Contributors",
"email": "[email protected]",
"homepage": "https://www.elkarte.net"
}
],
"support": {
"issues": "https://github.com/elkarte/Elkarte/issues",
"forum": "https://www.elkarte.com/community/",
"wiki": "https://github.com/elkarte/Elkarte/wiki",
"irc": "irc://irc.freenode.org/elkarte"
},
"minimum-stability": "beta",
"scripts": {
},
"replace": {
},
"require": {
"php": ">=8.0.0",
"ext-json": "*",
"ext-gd": "*",
"ext-curl": "*",
"ext-mysqli": "*",
"ext-fileinfo": "*",
"ext-exif": "*"
},
"suggest": {
"ext-memcache": "*",
"ext-zlib": "*",
"ext-pgsql": "*",
"ext-imap": "*",
"ext-memcached": "*",
"ext-zend-opcache": "*",
"ext-mbstring": "*",
"ext-apcu": "*",
"ext-libxml": "*",
"ext-dom": "*",
"ext-apache": "*",
"ext-iconv": "*",
"ext-imagick": "*"
},
"require-dev": {
"phpunit/phpunit-selenium": "9.0.1",
"phpunit/phpunit": "9.6.*",
"myclabs/deep-copy": "1.11.0"
},
"autoload": {
"psr-4": { "ElkArte\\": ["sources/ElkArte"] }
}
}