-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 939 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
{
"name": "dev-lancer/minecraft-motd-parser",
"type": "library",
"description": "PHP library to parse minecraft server motd",
"keywords": ["minecraft", "motd", "server", "php", "parser", "generator"],
"license": "MIT",
"authors": [
{
"name": "Jakub Gniecki",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.4",
"ext-mbstring": "*",
"ext-json": "*",
"ext-iconv": "*",
"symfony/polyfill-php80": "^1.30"
},
"autoload": {
"psr-4": {
"DevLancer\\MinecraftMotdParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DevLancer\\MinecraftMotdParser\\Test\\": "tests/"
}
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.6",
"friendsofphp/php-cs-fixer": "^3.59"
}
}