From a629cdbb79b4d682fae2d23abf201b78d68822ed Mon Sep 17 00:00:00 2001 From: Paul Klimov Date: Thu, 9 May 2024 18:29:36 +0300 Subject: [PATCH] drop PHP 7.1 support --- .github/workflows/build.yml | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fd0199b..9b89700 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - php: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3'] + php: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3'] steps: - name: Checkout diff --git a/composer.json b/composer.json index 5b8c6b3..0bf90ba 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ } ], "require": { - "php": ">=7.1", + "php": ">=7.2", "yiisoft/yii": "~1.1.0", "symfony/mailer": ">=4.3" },