-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.16 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
{
"name": "dev-lancer/mc-pack",
"description": "The library is designed to integrate the minecraft server with the website.",
"keywords": ["library", "minecraft", "server", "www", "php", "rcon", "query", "motd", "properties", "console", "ssh", "sftp"],
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": ">=7.4",
"xpaw/php-minecraft-query": "^4.0",
"phpseclib/phpseclib": "^2.0",
"dev-lancer/minecraft-rcon": "^1.0",
"dev-lancer/minecraft-status": "^3.0",
"dev-lancer/minecraft-motd-parser": "^1.0",
"symfony/polyfill-php83": "^1.30",
"ext-json": "*",
"symfony/config": "^5.4",
"symfony/serializer": "^5.4",
"symfony/property-access": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"authors": [
{
"name": "Jakub Gniecki",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"DevLancer\\MCPack\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DevLancer\\MCPack\\Tests\\": "tests/"
}
}
}