Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mops1k/minecraft-rcon

Rcon library for minecraft
https://github.com/mops1k/minecraft-rcon

Last synced: 3 days ago
JSON representation

Rcon library for minecraft

Awesome Lists containing this project

README

        

# Minecraft Rcon Library

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

### Installation
```shell
composer require mops1k/minecraft-rcon
```

### Example of usage
```php
send('time set 12')->getResponse(Rcon::RESPONSE_FORMATTED);
} catch (RconExceptionInterface $rconException) {
echo $rconException->getMessage();
}
```