2017 © Pedro Peláez
 

library ts3-php

Framework of ts3 in php.

image

thusk/ts3-php

Framework of ts3 in php.

  • Sunday, November 29, 2015
  • by thusk
  • Repository
  • 1 Watchers
  • 0 Stars
  • 47 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Introduction

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

Usage

Install via composer:, (*2)

"require": {
    "thusk/ts3-php": "dev-master"
},

Skipp the required_once part of official documentation and replace it with use TeamSpeak3\TeamSpeak3 statement., (*3)

Examples:, (*4)

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., (*5)

The Versions

29/11 2015

dev-master

9999999-dev https://github.com/thusk/ts3-php

Framework of ts3 in php.

  Sources   Download

GPL2

The Requires

  • php >=5.3.3

 

by Daniel Rubin
by Sven Paulsen
by Frank Kubis

php psr-4 teamspeak3