gries/rcon

PHP RCON Client

0.0.3 2015-06-07 11:23 UTC

This package is auto-updated.

Last update: 2024-04-16 21:08:21 UTC


README

This is a simple RCON-Client for php.

SensioLabsInsight

Build Status Code Quality

Installation

RCON can be installed via. Composer:

composer require "gries/rcon"

Usage

use gries\Rcon\MessengerFactory;
use gries\Rcon\Messenger;

require_once __DIR__.'/vendor/autoload.php';

// setup the messenger
$messenger = MessengerFactory::create('example.com', 25575, 'mypass');

// send a simple message
$response = $messenger->send('list');
echo $response; // a,b,c

// send a message and parse the command via. a callable
$response = $messenger->send('list', function($arg) {
    return explode(',', $arg);
});
print_r($response); // ['a', 'b', 'c']

Running the tests

vendor/bin/phpspec run

Contribute!

Feel free to give me feedback/feature-request/bug-reports via. github issues. Or just send me a pull-request :)

Author

License

For the full copyright and license information, please view the LICENSE file that was distributed with this source code.