This package is abandoned and no longer maintained. The author suggests using the lastlifegg/ts3-php package instead.

Clone of TS3 PHP Framework 1.1.23 providing the library as composer project.

1.1.23 2015-10-27 04:12 UTC

This package is not auto-updated.

Last update: 2022-02-01 13:12:23 UTC


README

Clone of TS3 PHP Framework 1.1.23 providing the library as composer project including namespaces and follow the PSR-4 Standard.

Usage

Install via composer:

"require": {
    "hardwiregaming/teamspeak-php-framework": "~1.1"
},

Example:

namespace Foo;
use TeamSpeak3\TeamSpeak3;

class TeamSpeak3Adapater
{
    private $ts;
    public __construct()
    {
        $this->ts3 = TeamSpeak3::factory("serverquery://username:password@127.0.0.1:10011/?server_port=9987");
    }

    public writeMessage($message)
    {
        $this->ts3->message($message);
    }
}

For more information visit the official documentation.