thusk / ts3-php
Framework of ts3 in php.
Installs: 62
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/thusk/ts3-php
Requires
- php: >=5.3.3
This package is not auto-updated.
Last update: 2025-09-27 23:42:04 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": {
"thusk/ts3-php": "dev-master"
},
Skipp the required_once part of official documentation and replace it with use TeamSpeak3\TeamSpeak3 statement.
Examples:
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.