-
-
Notifications
You must be signed in to change notification settings - Fork 137
/
composer.json
95 lines (95 loc) · 2.48 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
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
{
"name": "austinb/gameq",
"description": "GameQ Gameserver Library",
"keywords": [
"gameq",
"serverstatus"
],
"version": "v3.1.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": "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/Austinb/GameQ/v3",
"issues": "https://github.com/Austinb/GameQ/issues",
"wiki": "https://github.com/Austinb/GameQ/wiki"
},
"require": {
"php": ">=5.6.40",
"ext-bz2": "*",
"ext-xml": "*"
},
"require-dev": {
"ext-curl": "*",
"phpunit/phpunit": "^5.7 | ^6.0 | ^7.0 | ^8.0 | ^9.0",
"phpunit/php-invoker": "*",
"phpmd/phpmd": "@stable",
"squizlabs/php_codesniffer": "3.*@stable",
"corneltek/getoptionkit": "~2"
},
"autoload": {
"psr-4": {
"GameQ\\": "src/GameQ/"
}
},
"autoload-dev": {
"psr-4": {
"GameQ\\Tests\\": "tests"
}
},
"scripts": {
"test": [
"@test-phpcs",
"@test-phpmd",
"@test-php"
],
"test-php": "vendor/bin/phpunit",
"test-phpcs": "vendor/bin/phpcs src tests --extensions=php --ignore=bootstrap --report=checkstyle --report-file=build/logs/checkstyle.xml --standard=build/config/phpcs.xml -v",
"test-phpmd": "vendor/bin/phpmd src,tests xml build/config/phpmd.xml"
},
"scripts-descriptions": {
"test": "Run all tests!",
"test-php": "Run phpunit tests",
"test-phpcs": "Run PHP Code Style checks",
"test-phpmd": "Run PHP Mess Detector checks"
}
}