From 525fa631b0f5c5e0e11e96fe916f2ff47e4ed269 Mon Sep 17 00:00:00 2001 From: Joao Gilberto Magalhaes Date: Sun, 7 Jan 2024 19:13:38 -0600 Subject: [PATCH] Minium PHP Version 8.1 --- .github/workflows/phpunit.yml | 3 +-- composer.json | 8 ++++---- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index c2a4e52..5c3d3e7 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -16,10 +16,9 @@ jobs: strategy: matrix: php-version: + - "8.3" - "8.2" - "8.1" - - "8.0" - - "7.4" services: mysql: diff --git a/composer.json b/composer.json index 2612a9b..bbd3e08 100644 --- a/composer.json +++ b/composer.json @@ -9,12 +9,12 @@ "prefer-stable": true, "minimum-stability": "dev", "require": { - "php": ">=7.4", + "php": ">=8.1", "ext-pdo": "*", "byjg/anydataset-array": "4.9.*", - "psr/cache": "^1.0", - "psr/log": "^1.0", - "byjg/uri": "4.9.*", + "psr/cache": "^1.0|^2.0|^3.0", + "psr/log": "^1.1|^2.0|^3.0", + "byjg/uri": "^5.0", "ext-json": "*" }, "require-dev": {