hellbz / teamspeak-php-framework
Clone of TS3 PHP Framework 1.1.34 providing the library as composer project.
1.1.35
2020-09-03 22:55 UTC
Requires
- php: >=5.3.3
This package is auto-updated.
Last update: 2024-11-07 08:47:00 UTC
README
Clone of TS3 PHP Framework 1.1.35 providing the library as composer project including namespaces and follow the PSR-4 Standard.
Based on Framework from FKUBIS (https://github.com/fkubis/teamspeak-php-framework)
Usage
Install via composer:
"require": {
"hellbz/teamspeak-php-framework": "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 $ts3; 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.