diff --git a/README.md b/README.md index 5005483..503274e 100644 --- a/README.md +++ b/README.md @@ -57,3 +57,9 @@ included LICENSE file. Follow Steam Condenser on Google Plus+ via [+Steam Condenser](https://plus.google.com/b/109400543549250623875/109400543549250623875) or on Twitter via [@steamcondenser](https://twitter.com/steamcondenser). + +To get this working in Laravel 10 and php 8: Change two entries in the composer.json file, with these version numbers: + "monolog/monolog": "~3.5" +and + "phpunit/phpunit": "^10.1" + diff --git a/lib/SteamCondenser/Socket.php b/lib/SteamCondenser/Socket.php index 21306d1..105855c 100644 --- a/lib/SteamCondenser/Socket.php +++ b/lib/SteamCondenser/Socket.php @@ -21,7 +21,7 @@ * @author Sebastian Staudt * @package steam-condenser */ -abstract class Socket { +abstract class scSocket { /** * The IP address the socket is connected to diff --git a/lib/SteamCondenser/TCPSocket.php b/lib/SteamCondenser/TCPSocket.php index 8fdb35d..76aa919 100644 --- a/lib/SteamCondenser/TCPSocket.php +++ b/lib/SteamCondenser/TCPSocket.php @@ -20,7 +20,7 @@ * @author Sebastian Staudt * @package steam-condenser */ -class TCPSocket extends Socket { +class TCPSocket extends scSocket { /** * Connects the TCP socket to the host with the given IP address and port diff --git a/lib/SteamCondenser/UDPSocket.php b/lib/SteamCondenser/UDPSocket.php index 8dbf85e..c11e9cf 100644 --- a/lib/SteamCondenser/UDPSocket.php +++ b/lib/SteamCondenser/UDPSocket.php @@ -20,7 +20,7 @@ * @author Sebastian Staudt * @package steam-condenser */ -class UDPSocket extends Socket { +class UDPSocket extends scSocket { /** * Connects the UDP socket to the host with the given IP address and port