From af1febf0262f56cd8de42d181aaa1bc62650a4fd Mon Sep 17 00:00:00 2001 From: Anton Komarev Date: Wed, 11 Oct 2023 18:04:42 +0300 Subject: [PATCH] Add PHP8 Compatibility --- .github/workflows/tests.yml | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4897e2a..ec5ddb9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: fail-fast: true matrix: os: [ ubuntu-latest ] - php: [ 7.4, 8.0, 8.1, 8.2 ] + php: [ 8.0, 8.1, 8.2 ] dependency-version: [ prefer-lowest, prefer-stable ] include: - laravel: 9.* diff --git a/composer.json b/composer.json index 3585d78..1d98d1c 100644 --- a/composer.json +++ b/composer.json @@ -49,7 +49,7 @@ } }, "require": { - "php": "^7.0|^8.0", + "php": "^8.0", "ext-curl": "*", "ext-json": "*" },