PHPackages                             teamspeakphp/web-query - 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. [API Development](/categories/api)
4. /
5. teamspeakphp/web-query

ActiveLibrary[API Development](/categories/api)

teamspeakphp/web-query
======================

PHP TeamSpeak 3 WebQuery client

v0.2.2(1y ago)137↓100%[1 issues](https://github.com/teamspeakphp/web-query/issues)MITPHPPHP ^8.4CI passing

Since Jan 25Pushed 1y ago1 watchersCompare

[ Source](https://github.com/teamspeakphp/web-query)[ Packagist](https://packagist.org/packages/teamspeakphp/web-query)[ Docs](https://github.com/teamspeakphp/web-query)[ RSS](/packages/teamspeakphp-web-query/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (4)Dependencies (10)Versions (5)Used By (0)

PHP TeamSpeak 3 WebQuery client
===============================

[](#php-teamspeak-3-webquery-client)

[![Latest Version on Packagist](https://camo.githubusercontent.com/294fb1d81d5f1735724ee7d926bad23afd1fdd4b61b073194adf5c5fb6284b64/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7465616d737065616b7068702f7765622d71756572792e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/teamspeakphp/web-query)[![Tests](https://camo.githubusercontent.com/e5853bc187906ba94e92350f601427855a78acbc762a884003c23d148fe3bb2e/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f7465616d737065616b7068702f7765622d71756572792f74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/teamspeakphp/web-query/actions/workflows/tests.yml)[![Total Downloads](https://camo.githubusercontent.com/7f31be88341d4b7c31f3a4d5f735dc23095a5bc921c36099619263ef5a39212c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7465616d737065616b7068702f7765622d71756572792e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/teamspeakphp/web-query)

PHP TeamSpeak 3 WebQuery client.

> Note: This package is still under active development and is not yet ready for production use.

Features
--------

[](#features)

To see all commands that implemented, see [COMMANDS](COMMANDS.md).

Installation
------------

[](#installation)

> **Requires [PHP 8.4+](https://php.net/releases/)**

You can install the package via composer:

```
composer require teamspeakphp/web-query
```

Usage
-----

[](#usage)

To print names of the all channels:

```
$teamspeak = TeamSpeak::client('100.100.100.100:10080', 'my-api-key', 1);
$channels = $teamspeak->channels()->list()->channels;

foreach ($channels as $channel) {
    echo 'Found channel '.$channel->name.PHP_EOL;
}
```

To print nicknames with IP addresses of the first 100 clients in the database:

```
$teamspeak = TeamSpeak::client('100.100.100.100:10080', 'my-api-key', 1);
$clients = $teamspeak->databaseClients()->list(limit: 100)->clients;

foreach ($clients as $client) {
    echo sprintf('Database client: %s (%s)', $client->nickname, $client->lastIpAddress);
}
```

Method `TeamSpeak::client(...)` connects to the server through ID of the virtual server, but you can connect through the port of your server using the factory:

```
$teamspeak = TeamSpeak::factory()
    ->withBaseUri('100.100.100.100:10080')
    ->withApiKey('my-api-key')
    ->withPort(9987)
    ->make();
```

Testing
-------

[](#testing)

```
composer test
```

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance25

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 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.

###  Release Activity

Cadence

Every ~1 days

Total

4

Last Release

464d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/e5e25da349e854c9fe80b4889047ba9e6146801b72ca6f88ccc983f4abe94d27?d=identicon)[smitt14ua](/maintainers/smitt14ua)

---

Top Contributors

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

---

Tags

phpapiclientsdkteamspeakts3webquery

###  Code Quality

TestsPest

Static AnalysisPHPStan, Rector

Code StyleLaravel Pint

Type Coverage Yes

### Embed Badge

![Health badge](/badges/teamspeakphp-web-query/health.svg)

```
[![Health](https://phpackages.com/badges/teamspeakphp-web-query/health.svg)](https://phpackages.com/packages/teamspeakphp-web-query)
```

###  Alternatives

[openai-php/client

OpenAI PHP is a supercharged PHP API client that allows you to interact with the Open AI API

5.8k22.6M232](/packages/openai-php-client)[mozex/anthropic-php

Anthropic PHP is a supercharged community-maintained PHP API client that allows you to interact with Anthropic API.

46365.1k13](/packages/mozex-anthropic-php)[deepseek-php/deepseek-php-client

deepseek PHP client is a robust and community-driven PHP client library for seamless integration with the Deepseek API, offering efficient access to advanced AI and data processing capabilities.

47073.9k5](/packages/deepseek-php-deepseek-php-client)[gemini-api-php/client

API client for Google's Gemini API

216221.4k5](/packages/gemini-api-php-client)[gemini-api-php/laravel

Gemini API client for Laravel

8915.7k](/packages/gemini-api-php-laravel)[google-gemini-php/symfony

Symfony Bundle for Gemini

149.4k1](/packages/google-gemini-php-symfony)

PHPackages © 2026

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