mops1k/minecraft-rcon

Minecraft rcon request library

2.0.1 2022-11-16 11:01 UTC

This package is auto-updated.

Last update: 2024-05-16 14:18:57 UTC


README

Simple Minecraft Rcon library to make rcon requests and get response back.

Installation

composer require mops1k/minecraft-rcon

Example of usage

<?php
use MinecraftRcon\Rcon;
use MinecraftRcon\RconExceptionInterface;

require_once 'vendor/autoload.php';

try {
    $rcon = new Rcon(
        'localhost',
        25575,
        'password'
    );

    echo $rcon->send('time set 12')->getResponse(Rcon::RESPONSE_FORMATTED);
} catch (RconExceptionInterface $rconException) {
    echo $rconException->getMessage();
}