-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
39 lines (39 loc) · 914 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
{
"name": "zekythewolf/lgsq",
"description": "Live Game Server Query",
"keywords": [
"zekywolf",
"lgsq"
],
"homepage": "https://github.com/zekywolf/lgsq",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Zeky Wolf",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.2"
},
"require-dev": {
"laravel/pint": "^1.10",
"phpunit/phpunit": "^9.0 || ^10.0 || ^11.0"
},
"autoload": {
"psr-4": {
"ZekyWolf\\LGSQ\\": "src"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-php coverage",
"code:check": "./vendor/bin/pint --test",
"code:format": "./vendor/bin/pint"
},
"config": {
"sort-packages": true
}
}