From 492ea7d0007a87cd3e8bbd537cff4064b173637d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E7=9B=B8=E8=BD=A9?= <9570112+nauxliu@users.noreply.github.com> Date: Tue, 3 Dec 2019 16:36:53 +0800 Subject: [PATCH] PHP 7.1 end of life (#1752) 7.1 is no longer supported. Users of this release should upgrade as soon as possible, as they may be exposed to unpatched security vulnerabilities. Ref: https://www.php.net/supported-versions.php --- .github/workflows/test.yml | 1 - README.md | 2 +- composer.json | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 67bf2d5cd..9d1a7f867 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,6 @@ jobs: fail-fast: false matrix: php_version: - - 7.1 - 7.2 - 7.3 - 7.4 diff --git a/README.md b/README.md index 1539c5208..6d1747f08 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ ## Requirement -1. PHP >= 7.1 +1. PHP >= 7.2 2. **[Composer](https://getcomposer.org/)** 3. openssl 拓展 4. fileinfo 拓展(素材管理模块需要用到) diff --git a/composer.json b/composer.json index 9ba8965e4..13c3607ce 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ } ], "require": { - "php": ">=7.1", + "php": ">=7.2", "ext-fileinfo": "*", "ext-openssl": "*", "ext-simplexml": "*",