1
0
Fork 0
A PHP class for checking the status of an enabled Minecraft server
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
Anton Smirnov b12702cbd9
Update README.md
5 years ago
classes * sandfox-im -> sandfoxme 5 years ago
example * sandfox-im -> sandfoxme 5 years ago
.gitignore Initial rewrite from python + motd cleaning 9 years ago
README.md Update README.md 5 years ago
composer.json * sandfox-im -> sandfoxme 5 years ago

README.md

Minecraft Server Query

This library is not maintained. Please use some supported library like this one: https://github.com/xPaw/PHP-Minecraft-Query

A PHP library for checking the status of an enabled Minecraft server ported from python https://github.com/Dinnerbone/mcstatus

Installation

Add the following code to your composer file.

{
    "require": {
        "sandfoxme/minecraft-query": "^1.0.2"
    }
}

NB: 1.0.0 and 1.0.1 used the name sandfox-im/minecraft-query and namespace SandFoxIM\Minecraft

Usage

<?php

$minecraft = new \SandFoxMe\Minecraft\ServerQuery($argv[1], $argv[2], 2);

echo "Basic info:\n";
var_export($minecraft->getStatus());

echo "Full info:\n";
var_export($minecraft->getRules());