-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathcomposer.json
64 lines (64 loc) · 1.11 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
61
62
63
64
{
"name": "tltneon/lgsl",
"description": "PHP library retrieve game servers status from various types of games.",
"homepage": "https://github.com/tltneon/lgsl",
"type": "library",
"license": "GPL-3.0-only",
"keywords":
[
"gameserver",
"query",
"discord",
"fivem",
"minecraft",
"cs",
"gmod",
"rust",
"dayz",
"ark",
"samp"
],
"authors": [
{
"name": "Richard Perry",
"homepage": "http://www.greycube.com",
"role": "Author"
},
{
"name": "Neon",
"homepage": "https://github.com/tltneon",
"role": "Developer"
}
],
"support": {
"wiki": "https://github.com/tltneon/lgsl/wiki",
"forum": "https://github.com/tltneon/lgsl/discussions",
"source": "https://github.com/tltneon/lgsl",
"issues": "https://github.com/tltneon/lgsl/issues"
},
"funding": [
{
"type": "patreon",
"url": "https://www.patreon.com/user?u=22162275&fan_landing=true"
}
],
"require":
{
"php": ">=5.4",
"ext-mysqli": "*",
"ext-bz2": "*",
"ext-curl": "*"
},
"suggest":
{
"ext-gd": "*",
"ext-mbstring": "*"
},
"autoload":
{
"psr-4":
{
"lgsl\\": "lgsl/lgsl_files/lgsl_class.php"
}
}
}