-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
42 lines (42 loc) · 925 Bytes
/
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
{
"name": "jacklul/q3serverlist",
"type": "library",
"description": "Simple library for querying Quake 3 based master servers and it's game servers",
"keywords": [
"quake",
"q3",
"master",
"server",
"game"
],
"license": "MIT",
"support": {
"issues": "https://github.com/jacklul/q3serverlist/issues",
"source": "https://github.com/jacklul/q3serverlist"
},
"authors": [
{
"name": "Jack'lul",
"email": "[email protected]",
"homepage": "https://jacklul.github.io",
"role": "Developer"
}
],
"require": {
"php": "^5.5|^7.0|^8.0",
"ext-sockets": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.2"
},
"autoload": {
"psr-4": {
"jacklul\\q3serverlist\\": "src/"
}
},
"scripts": {
"check-code": [
"\"vendor/bin/phpcs\" -snp --standard=PSR2 --encoding=utf-8 --report-width=150 src/"
]
}
}