-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.51 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.51 KB
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
{
"name": "ogsteam/ogspy",
"description": "OGSpy collects data from a game and provide statistics to their players",
"type": "toolbox",
"keywords": [
"ogspy"
],
"license": "GPL-2.0-only",
"authors": [
{
"name": "DarkNoon",
"email": "darknoon@darkcity.fr",
"homepage": "https://github.com/darknoon29",
"role": "Lead Developer"
},
{
"name": "Machine",
"homepage": "https://github.com/machine62",
"role": "Developer"
}
],
"require": {
"php": ">=8.1",
"ext-mysqli": "*",
"ext-json": "*",
"ext-zlib": "*",
"ext-zip": "*",
"ext-openssl": "*",
"ext-mbstring": "*",
"tooltipster/tooltipster": "^4.2",
"phpmailer/phpmailer": "^7.0",
"filp/whoops": "^2.15",
"components/jquery": "^3.7",
"monolog/monolog": "^3.9"
},
"autoload": {
"psr-4": {
"Ogsteam\\Ogspy\\Core\\": "core/",
"Ogsteam\\Ogspy\\Helper\\": "core/helper/",
"Ogsteam\\Ogspy\\Abstracts\\": "core/abstract/",
"Ogsteam\\Ogspy\\Model\\": "model/",
"Ogsteam\\Ogspy\\Install\\": "install/"
}
},
"homepage": "https://github.com/ogsteam/ogspy",
"support": {
"issues": "https://github.com/ogsteam/ogspy/issues",
"source": "https://github.com/ogsteam/ogspy/tree/master",
"chat": "https://discord.gg/Azcb67b"
},
"require-dev": {
"phpunit/phpunit": "^13.0"
},
"scripts": {
"test": [
"XDEBUG_MODE=coverage php vendor/bin/phpunit"
],
"server": [
"php -S localhost:8000"
]
}
}