Bump minimum PHP version to 5.5

pull/94/head
Pavel Djundik 9 years ago
parent e798d8f7c2
commit a63112c2c9

@ -28,5 +28,7 @@
{ {
echo $e->getMessage( ); echo $e->getMessage( );
} }
finally
$Query->Disconnect( ); {
$Query->Disconnect( );
}

@ -28,5 +28,7 @@
{ {
echo $e->getMessage( ); echo $e->getMessage( );
} }
finally
$Query->Disconnect( ); {
$Query->Disconnect( );
}

@ -31,8 +31,10 @@
{ {
$Exception = $e; $Exception = $e;
} }
finally
$Query->Disconnect( ); {
$Query->Disconnect( );
}
$Timer = Number_Format( MicroTime( true ) - $Timer, 4, '.', '' ); $Timer = Number_Format( MicroTime( true ) - $Timer, 4, '.', '' );
?> ?>

@ -6,7 +6,7 @@ The class also allows you to query servers using RCON although this only works f
[Minecraft](http://www.minecraft.net) also uses Source RCON protocol, and this means you can use this class to send commands to your minecraft server while having engine set to Source engine. [Minecraft](http://www.minecraft.net) also uses Source RCON protocol, and this means you can use this class to send commands to your minecraft server while having engine set to Source engine.
**This library requires a [modern version](https://php.net/supported-versions.php) of PHP, so make sure you are using at least PHP 5.4 or newer.** **This library requires a [modern version](https://php.net/supported-versions.php) of PHP, so make sure you are using at least PHP 5.5 or newer.**
**:warning: Please do not create issues when you are unable to retrieve information from a server, unless you can prove that there is a bug within the library.** **:warning: Please do not create issues when you are unable to retrieve information from a server, unless you can prove that there is a bug within the library.**

@ -18,7 +18,7 @@
], ],
"require": "require":
{ {
"php": ">=5.4" "php": ">=5.5"
}, },
"autoload": "autoload":
{ {

Loading…
Cancel
Save