-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 loc) · 1.28 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
{
"name": "loper/minecraft-query-client",
"description": "Minecraft Query Client by TCP and UDP protocols.",
"type": "library",
"require": {
"phpinnacle/buffer": "^1.2",
"clue/socket-raw": "^1.6",
"ext-sockets": "*",
"composer/semver": "^3.3",
"ext-mbstring": "*",
"ext-intl": "*",
"loper/minecraft-php-structure": "^1.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Loper\\MinecraftQueryClient\\": "src/",
"Loper\\MinecraftQueryClient\\Tests\\": "tests"
}
},
"scripts": {
"fix": [
"composer install -d tools/php-cs-fixer/ 2> /dev/null && PHP_CS_FIXER_IGNORE_ENV=true php tools/php-cs-fixer/vendor/bin/php-cs-fixer --allow-risky=yes fix"
],
"analyze": [
"composer install -d tools/phpstan/ 2> /dev/null && php tools/phpstan/vendor/phpstan/phpstan/phpstan.phar analyze -c tools/phpstan/phpstan.neon --level 9 src/"
]
},
"authors": [
{
"name": "loper",
"email": "bizrenay@gmail.com"
}
],
"minimum-stability": "stable",
"require-dev": {
"jetbrains/phpstorm-attributes": "^1.0",
"phpunit/phpunit": "^10.2",
"dg/bypass-finals": "^1.4"
}
}