-
-
Notifications
You must be signed in to change notification settings - Fork 138
Version 3
Austin Bischoff edited this page Mar 2, 2015
·
34 revisions
This method assumes you already have composer installed and working properly. Add austinb/gameq
as a requirement to composer.json by using composer require austinb/gameq:3.*@stable
or by manually adding the following to the composer.json file in the require section:
"austinb/gameq": "3.*@stable"
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 auto loading functionality as the Composer install.
$GameQ = new \GameQ\GameQ();
$GameQ->addServer([
'type' => 'css',
'host' => '127.0.0.1:27015',
]);
$results = $GameQ->process();
Need more? See Examples.