From f401b50ebd7a2e7371d7f68b6b24f39058eecdd8 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Sat, 4 Nov 2023 11:20:38 +0100 Subject: [PATCH] Remove support for PHP 8.1 and add support to PHP 8.3 --- CHANGELOG.md | 17 +++++++++++++++++ composer.json | 18 +++++++++--------- 2 files changed, 26 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c49874..3299d69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com), and this project adheres to [Semantic Versioning](https://semver.org). +## [Unreleased] +### Added +* Add support for PHP 8.3 + +### Changed +* *Nothing* + +### Deprecated +* *Nothing* + +### Removed +* Drop support for PHP 8.1 + +### Fixed +* *Nothing* + + ## [5.1.0] - 2023-04-22 ### Added * Ensure CSVs generated by shlink-web-client are properly parsed. diff --git a/composer.json b/composer.json index 542c32e..83c3693 100644 --- a/composer.json +++ b/composer.json @@ -12,25 +12,25 @@ } ], "require": { - "php": "^8.1", + "php": "^8.2", "ext-json": "*", - "laminas/laminas-servicemanager": "^3.20", - "league/csv": "^9.8", + "laminas/laminas-servicemanager": "^3.22", + "league/csv": "^9.11", "lstrojny/functional-php": "^1.17", "shlinkio/shlink-config": "^2.4", "shlinkio/shlink-json": "^1.0", - "symfony/console": "^6.2" + "symfony/console": "^6.3" }, "require-dev": { - "guzzlehttp/guzzle": "^7.5", - "infection/infection": "^0.26.20", - "phpstan/phpstan": "^1.9", + "guzzlehttp/guzzle": "^7.8", + "infection/infection": "^0.27.7", + "phpstan/phpstan": "^1.10", "phpstan/phpstan-phpunit": "^1.3", - "phpunit/phpunit": "^10.1", + "phpunit/phpunit": "^10.4", "psr/http-factory": "^1.0", "roave/security-advisories": "dev-master", "shlinkio/php-coding-standard": "~2.3.0", - "symfony/var-dumper": "^6.2" + "symfony/var-dumper": "^6.3" }, "suggest": { "psr/http-client": "If you want to be able to import URLs from Bit.ly, YOURLS, Kutt.it or another Shlink instance",