PHPackages                             jacklul/q3serverlist - 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. [DevOps &amp; Deployment](/categories/devops)
4. /
5. jacklul/q3serverlist

ActiveLibrary[DevOps &amp; Deployment](/categories/devops)

jacklul/q3serverlist
====================

Simple library for querying Quake 3 based master servers and it's game servers

2.1.0(2y ago)176.2k↓50%5[1 issues](https://github.com/jacklul/q3serverlist/issues)MITPHPPHP ^5.5|^7.0|^8.0

Since Jan 30Pushed 2y ago2 watchersCompare

[ Source](https://github.com/jacklul/q3serverlist)[ Packagist](https://packagist.org/packages/jacklul/q3serverlist)[ RSS](/packages/jacklul-q3serverlist/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (7)Dependencies (1)Versions (8)Used By (0)

Quake 3 Server List
===================

[](#quake-3-server-list)

Simple library for querying Quake 3 based master servers and it's game servers.

- Version `1.x.x` uses `fsockopen` (no longer supported)
- Version `2.x.x` uses `sockets` extension

*For legacy version check [old](https://github.com/jacklul/q3serverlist/tree/old) branch.*

### Master Server Compatibility

[](#master-server-compatibility)

Any Quake 3 based master server, including:

- Quake 3 Arena (`master.quake3arena.com:27950`, protocol 68)
- Enemy Territory (`etmaster.idsoftware.com:27950`, protocol 84)
- Return to Castle Wolfenstein (`wolfmaster.idsoftware.com:27950`, protocol 57)
- Jedi Knight 2 (`masterjk2.ravensoft.com:29060`, protocol 16)
- Jedi Knight: Jedi Academy (`masterjk3.ravensoft.com:29060`, protocol 26)
- Call of Duty 4: Modern Warfare (`cod4master.activision.com:20810`, protocol 6)

... and more!

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

[](#installation)

Install with [Composer](https://github.com/composer/composer):

```
$ composer require jacklul/q3serverlist
```

Usage
-----

[](#usage)

```
use jacklul\q3serverlist\MasterServer;
use jacklul\q3serverlist\Server;

require(__DIR__ . '/vendor/autoload.php');

$ms = new MasterServer('master.quake3arena.com', 27950, 68);
$servers = $ms->getServers(); // Second call will always return cached data, same with Server->getInfo and Server->getStatus

/** @var Server $server */
foreach ($servers as $server) {
	$info = $server->getInfo();	// 'getinfo' request usually returns map name

	// Find first server with map 'q3dm17' (The Longest Yard) and print it's status
	if (isset($info['mapname']) && $info['mapname'] === 'q3dm17') {
		print_r($server->getStatus());
		break;
	}
}

// You can get status/info variables magically like this:
$server->getMapname();

// To get variables that include '_' in their name use capitalization:
$server->getSvMaxclients(); // (sv_maxclients)
```

More examples available in [examples](/examples) directory.

License
-------

[](#license)

See [LICENSE](LICENSE).

###  Health Score

37

—

LowBetter than 83% of packages

Maintenance19

Infrequent updates — may be unmaintained

Popularity32

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity70

Established project with proven stability

 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 ~264 days

Recently: every ~373 days

Total

7

Last Release

1079d ago

Major Versions

1.1.0 → 2.0.02020-07-20

PHP version history (2 changes)1.0.0PHP ^5.5|^7.0

2.1.0PHP ^5.5|^7.0|^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/1c5d190f1856db1e9c39d095b0eadd550475fd09d658d38c015c4631a10748f3?d=identicon)[jacklul](/maintainers/jacklul)

---

Top Contributors

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

---

Tags

gameservermaster-serverquake3server-listservergamemasterq3quake

###  Code Quality

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/jacklul-q3serverlist/health.svg)

```
[![Health](https://phpackages.com/badges/jacklul-q3serverlist/health.svg)](https://phpackages.com/packages/jacklul-q3serverlist)
```

###  Alternatives

[spatie/laravel-webhook-server

Send webhooks in Laravel apps

1.1k8.8M22](/packages/spatie-laravel-webhook-server)[pragmarx/health

Laravel Server &amp; App Health Monitor and Notifier

2.0k1.0M2](/packages/pragmarx-health)[felixfbecker/language-server-protocol

PHP classes for the Language Server Protocol

22476.7M6](/packages/felixfbecker-language-server-protocol)[clue/socket-raw

Simple and lightweight OOP wrapper for PHP's low-level sockets extension (ext-sockets).

35111.1M48](/packages/clue-socket-raw)[voryx/thruway

Thruway WAMP router core

6771.0M17](/packages/voryx-thruway)[php-mcp/server

PHP SDK for building Model Context Protocol (MCP) servers - Create MCP tools, resources, and prompts

828280.5k25](/packages/php-mcp-server)

PHPackages © 2026

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