Skip to content

Commit

Permalink
1.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ZekyTheWolf committed Jun 11, 2023
1 parent db39571 commit 7a5dc31
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@

All notable changes to `lgsq` will be documented in this file

## 1.4.3 - 11.6.2023
* Update composer.json, added missing authors, update PHP version (Now allowing PHP 8.0, 8.1)

## 1.4.2 - 7.6.2023
* Fix validate spacing, removing spaces from ip when validate.

## 1.4.1 - 1.6.2023
* Change sockets to stream_* that provides more api, reliability and improved performance.
* New option params

## 1.4.0 - 30.5.2023
* Seperated params from Helpers folder and moved to own
* Created setOption/getOption function to be able set custom curl timeout.
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@
[![Total Downloads](https://img.shields.io/packagist/dt/zekythewolf/lgsq.svg?style=for-the-badge&color=%23fff)](https://packagist.org/packages/zekythewolf/lgsq)


This is where your description should go. Try and limit it to a paragraph or two, and maybe throw in a mention of what PSRs you support to avoid any confusion with users and contributors.
Live game server query, standlone library that provides multiple game queries for you. <br />
Based on [LGSL](https://github.com/tltneon/lgsl), thanks to tltneon.
<br />
<br />
This package is tested only on PHP 8.2, why? <br />
Because PHP 7.4 or lower are on end of life and PHP 8.0 is only security fixes.<br />
My recommendation is to use latest version, that is available at [PHP](https://php.net)

## Installation

Expand Down
12 changes: 11 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,24 @@
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Richard Perry",
"homepage": "http://www.greycube.com",
"role": "Author"
},
{
"name": "Neon",
"homepage": "https://github.com/tltneon",
"role": "Developer"
},
{
"name": "Zeky Wolf",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.2"
"php": "^8.0|^8.1|^8.2"
},
"require-dev": {
"laravel/pint": "^1.10",
Expand Down
2 changes: 1 addition & 1 deletion src/LGSQ.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class LGSQ
* MINOR
* PATCH
*/
public const LGSQ_VERSION = '1.4.2';
public const LGSQ_VERSION = '1.4.3';

/**
* Validate server data, connect and set data.
Expand Down

0 comments on commit 7a5dc31

Please sign in to comment.