forked from Austinb/GameQ
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
110 lines (110 loc) · 2.88 KB
/
composer.json
File metadata and controls
110 lines (110 loc) · 2.88 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "krymosoftware/gameq",
"description": "A maintained fork of the famous PHP Gameserver Status Query Library GameQ by Austinb",
"keywords": [
"gameq",
"serverstatus"
],
"version": "4.0.0",
"license": "LGPL-3.0+",
"authors": [
{
"name": "Austin Bischoff",
"email": "austin.bischoff@gmail.com",
"role": "Packagist/Composer Maintainer, Developer",
"homepage": "https://github.com/Austinb"
},
{
"name": "Krymo Software",
"email": "info@krymo.software",
"role": "Fork Maintainer, Developer",
"homepage": "https://krymo.software"
},
{
"name": "Christoph Kretzschmar",
"email": "blackskyliner@googlemail.com",
"role": "Developer",
"homepage": "https://github.com/Blackskyliner"
},
{
"name": "Marcel Bößendörfer",
"email": "m.boessendoerfer@marbis.net",
"role": "Developer",
"homepage": "https://github.com/nitrado"
},
{
"name": "Alexander Hambalgo",
"role": "Developer",
"homepage": "http://balgo.users.sourceforge.net/"
},
{
"name": "Holger",
"role": "Developer",
"homepage": "http://icet33.users.sourceforge.net/"
},
{
"name": "Sebastian Weidenbach",
"role": "Developer",
"homepage": "http://sebastianwe.users.sourceforge.net/"
},
{
"name": "Patrick Henninger",
"email": "privat@skyraptor.eu",
"role": "Developer",
"homepage": "https://skyraptor.eu"
}
],
"support": {
"source": "https://github.com/KrymoSoftware/GameQ",
"issues": "https://github.com/KrymoSoftware/GameQ/issues",
"wiki": "https://github.com/Austinb/GameQ/wiki"
},
"require": {
"php": ">=8.1",
"ext-bz2": "*",
"ext-xml": "*",
"ext-simplexml": "*"
},
"require-dev": {
"ext-curl": "*",
"phpunit/phpunit": "^9.0",
"phpunit/php-invoker": "*",
"squizlabs/php_codesniffer": "3.*@stable",
"corneltek/getoptionkit": "~2",
"phpstan/phpstan": "^1.12",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-phpunit": "^1.4"
},
"autoload": {
"psr-4": {
"GameQ\\": "src/GameQ/"
}
},
"autoload-dev": {
"psr-4": {
"GameQ\\Tests\\": "tests"
}
},
"scripts": {
"test": [
"@phpcs",
"@phpstan",
"@phpunit"
],
"phpcs": "vendor/bin/phpcs src tests --extensions=php --ignore=bootstrap --report=checkstyle --report-file=build/logs/checkstyle.xml --standard=build/config/phpcs.xml -v",
"phpstan": "vendor/bin/phpstan analyse src",
"phpunit": "vendor/bin/phpunit"
},
"scripts-descriptions": {
"test": "Run all tests and checks",
"phpcs": "Run PHP Code Style checks",
"phpstan": "Run PHPStan checks",
"phpunit": "Run PHPUnit tests"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}