GameQ is a PHP library that allows you to query multiple types of multiplayer game & voice servers at the same time.
This repository is a maintained fork of Austinb/GameQ by SoftCreatR Media. While we don't plan to add new games for now, we'll ensure compatibility with the latest PHP versions and fix issues as they arise.
This method assumes you already have composer installed and working properly. Add softcreatr/gameq as a requirement to composer.json by using composer require softcreatr/gameq:^4.0.0 or by manually adding the following to the composer.json file in the require section:
"softcreatr/gameq": "^4.0.0"Update your packages with composer update or install with composer install.
Download the latest version of the library and unpack it into your project. Add the following to your bootstrap file:
require_once('/path/to/src/GameQ/Autoloader.php');The Autoloader.php file provides the same autoloading functionality as the Composer installation.
$GameQ = new \GameQ\GameQ();
$GameQ->addServer([
'type' => 'css',
'host' => '127.0.0.1:27015',
]);
$results = $GameQ->process();Need more? See Examples.
Please see CONTRIBUTING for details.
See LICENSE for more information