mirror of
https://github.com/xPaw/PHP-Source-Query.git
synced 2026-05-18 15:33:34 +02:00
c74a5dcc99
Closes #74
27 lines
939 B
PHP
27 lines
939 B
PHP
<?php
|
|
/**
|
|
* Library to query servers that implement Source Engine Query protocol.
|
|
*
|
|
* Special thanks to koraktor for his awesome Steam Condenser class,
|
|
* I used it as a reference at some points.
|
|
*
|
|
* @author Pavel Djundik <sourcequery@xpaw.me>
|
|
*
|
|
* @link https://xpaw.me
|
|
* @link https://github.com/xPaw/PHP-Source-Query
|
|
*
|
|
* @license GNU Lesser General Public License, version 2.1
|
|
*/
|
|
|
|
require_once __DIR__ . '/Exception/SourceQueryException.php';
|
|
require_once __DIR__ . '/Exception/AuthenticationException.php';
|
|
require_once __DIR__ . '/Exception/InvalidArgumentException.php';
|
|
require_once __DIR__ . '/Exception/SocketException.php';
|
|
require_once __DIR__ . '/Exception/InvalidPacketException.php';
|
|
|
|
require_once __DIR__ . '/Buffer.php';
|
|
require_once __DIR__ . '/Socket.php';
|
|
require_once __DIR__ . '/SourceRcon.php';
|
|
require_once __DIR__ . '/GoldSourceRcon.php';
|
|
require_once __DIR__ . '/SourceQuery.php';
|