Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mops1k/minecraft-rcon
- Owner: mops1k
- Created: 2017-02-07T11:51:05.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-11-16T11:02:25.000Z (almost 2 years ago)
- Last Synced: 2024-11-02T11:30:05.060Z (14 days ago)
- Language: PHP
- Size: 4.88 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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();
}
```