From fb0afdcea1fc24fbd95392772c901f1c0f668c94 Mon Sep 17 00:00:00 2001 From: slawkens Date: Sat, 27 Jan 2024 01:05:03 +0100 Subject: [PATCH] We require PHP 8.1, cause of illuminate/database --- .github/workflows/cypress.yml | 2 +- common.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 2909555a..2e31d2bb 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -22,7 +22,7 @@ jobs: strategy: fail-fast: false matrix: - php-versions: [ '7.4', '8.0', '8.1' ] + php-versions: [ '8.1', '8.2', '8.3' ] name: MyAAC on PHP ${{ matrix.php-versions }} steps: - name: 📌 MySQL Start & init & show db diff --git a/common.php b/common.php index c2dbad54..91926fc5 100644 --- a/common.php +++ b/common.php @@ -23,7 +23,7 @@ * @copyright 2019 MyAAC * @link https://my-aac.org */ -if (version_compare(phpversion(), '8.0', '<')) die('PHP version 8.0 or higher is required.'); +if (version_compare(phpversion(), '8.1', '<')) die('PHP version 8.1 or higher is required.'); const MYAAC = true; const MYAAC_VERSION = '1.0-dev';