PHPackages                             piciuu/teamspeak-php-framework-for-laravel - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. piciuu/teamspeak-php-framework-for-laravel

ActiveLibrary[Framework](/categories/framework)

piciuu/teamspeak-php-framework-for-laravel
==========================================

Clone of TS3 PHP Framework 1.1.23 providing the library as composer project and fix on string issues php 7.4.

062PHP

Since Jul 14Pushed 5y ago1 watchersCompare

[ Source](https://github.com/PiciuU/teamspeak-php-framework-laravel)[ Packagist](https://packagist.org/packages/piciuu/teamspeak-php-framework-for-laravel)[ RSS](/packages/piciuu-teamspeak-php-framework-for-laravel/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependenciesVersions (1)Used By (0)

Introduction
============

[](#introduction)

Clone of [TS3 PHP Framework](https://github.com/fkubis/teamspeak-php-framework) providing fix on string issues for PHP 7.4

Usage
=====

[](#usage)

Install via composer:

```
composer require piciuu/teamspeak-php-framework-for-laravel
```

Skip the required\_once part of official documentation and replace it with use TeamSpeak3\\TeamSpeak3 statement.

Examples for API Controller:

```
namespace App\Http\Controllers;
use TeamSpeak3\TeamSpeak3;
use Illuminate\Http\Request;

class TeamSpeak3Controller extends Controller
{
    private $ts3;
    public function __construct()
    {
        try{
            $this->ts3 = TeamSpeak3::factory("serverquery://username:password@127.0.0.1:10011/?server_port=9987");
        }
        catch(Exception $e){
            return 'Unable to connect to server.';
        }
    }

    public function writeMessage(Request $request)
    {
        $this->ts3->message($request->input('message'));
        return response()->json(['success' => 'Message has been sent'], 200);
    }

    public function serverStatus() {
        $ping = intval($this->ts3->connectionInfo()['connection_ping']->__toString());
        $clients = $this->ts3->clientCount();
        $maxclients = $this->ts3->getProperty("virtualserver_maxclients");
        return response()->json(['ping' => $ping,'clients' => $clients, 'maxclients' => $maxclients], 200);
    }
}
```

For more information visit the [official documentation](https://docs.planetteamspeak.com/ts3/php/framework/).

###  Health Score

18

—

LowBetter than 8% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity33

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/62311923?v=4)[PiciuU](/maintainers/PiciuU)[@PiciuU](https://github.com/PiciuU)

---

Top Contributors

[![PiciuU](https://avatars.githubusercontent.com/u/62311923?v=4)](https://github.com/PiciuU "PiciuU (4 commits)")

### Embed Badge

![Health badge](/badges/piciuu-teamspeak-php-framework-for-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/piciuu-teamspeak-php-framework-for-laravel/health.svg)](https://phpackages.com/packages/piciuu-teamspeak-php-framework-for-laravel)
```

###  Alternatives

[laravel/dusk

Laravel Dusk provides simple end-to-end testing and browser automation.

1.9k39.6M299](/packages/laravel-dusk)[nineinchnick/edatatables

Grid widget for the Yii Framework, wrapper for the DataTables jQuery plugin

173.2k](/packages/nineinchnick-edatatables)[link-cloud/fast-hyperf

LinkCloud Fast Hyperf

241.2k1](/packages/link-cloud-fast-hyperf)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
