From 6ac2df46eec8ae392d746a3af17c510ae3d33655 Mon Sep 17 00:00:00 2001 From: Francimar Alves Date: Thu, 17 Aug 2023 23:23:28 -0300 Subject: [PATCH] ci(php): requer php 8.1 e superior --- .github/workflows/ci.yml | 2 +- README.md | 2 +- composer.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8ce6083..dd81762 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ["8.0", "8.1", "8.2"] + php-version: ["8.1", "8.2"] steps: - name: Setup PHP diff --git a/README.md b/README.md index fd905f3..e6b6cec 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ echo $connection->getBuffer(); ``` ## Dependencies -- PHP 7.1 or above +- PHP 8.1 or above - Mbstring extension ## License diff --git a/composer.json b/composer.json index 8f5e2fe..4341557 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ } ], "require": { - "php": ">= 7.3.0", + "php": ">= 8.1", "ext-mbstring": "*", "endroid/qr-code": "^3.5.8" },