mops1k / minecraft-rcon
Minecraft rcon request library
2.0.1
2022-11-16 11:01 UTC
Requires
- php: >=7.4
This package is auto-updated.
Last update: 2024-11-16 15:24:33 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(); }