28 lines
998 B
PHP
28 lines
998 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__ . '/Exception/TimeoutException.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';
|