From 8fc55122ffdefaba8200a6e8a245529f9fd29ed0 Mon Sep 17 00:00:00 2001 From: Denny Septian Panggabean Date: Tue, 13 Aug 2024 18:22:33 +0700 Subject: [PATCH] fix: set minimum PHP 8.1 --- .github/workflows/test-coding-standard.yml | 2 +- .github/workflows/test-phpstan.yml | 2 +- .github/workflows/test-phpunit.yml | 2 +- .github/workflows/test-rector.yml | 2 +- composer.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test-coding-standard.yml b/.github/workflows/test-coding-standard.yml index 887dc9e..c504ad6 100644 --- a/.github/workflows/test-coding-standard.yml +++ b/.github/workflows/test-coding-standard.yml @@ -29,7 +29,7 @@ jobs: strategy: fail-fast: false matrix: - php-versions: ['8.0', '8.3'] + php-versions: ['8.1', '8.3'] steps: - name: Checkout diff --git a/.github/workflows/test-phpstan.yml b/.github/workflows/test-phpstan.yml index 505d3f1..2711203 100644 --- a/.github/workflows/test-phpstan.yml +++ b/.github/workflows/test-phpstan.yml @@ -33,7 +33,7 @@ jobs: strategy: fail-fast: false matrix: - php-versions: ['8.0', '8.1', '8.2', '8.3'] + php-versions: ['8.1', '8.2', '8.3'] steps: - name: Checkout diff --git a/.github/workflows/test-phpunit.yml b/.github/workflows/test-phpunit.yml index 3cb1e8a..db17e8c 100644 --- a/.github/workflows/test-phpunit.yml +++ b/.github/workflows/test-phpunit.yml @@ -31,7 +31,7 @@ jobs: if: (! contains(github.event.head_commit.message, '[ci skip]')) strategy: matrix: - php-versions: ['8.0', '8.1', '8.2', '8.3'] + php-versions: ['8.1', '8.2', '8.3'] steps: - name: Checkout diff --git a/.github/workflows/test-rector.yml b/.github/workflows/test-rector.yml index 5d00f6a..1ecbcec 100644 --- a/.github/workflows/test-rector.yml +++ b/.github/workflows/test-rector.yml @@ -26,7 +26,7 @@ jobs: strategy: fail-fast: false matrix: - php-versions: ['8.1', '8.2'] + php-versions: ['8.1', '8.3'] steps: - name: Checkout diff --git a/composer.json b/composer.json index 48c6ffd..5ab9e1e 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ ], "homepage": "https://github.com/PHPDevsr/PHPSpreadsheet-Secure", "require": { - "php": "^8.0 || ^8.1 || ^8.2 || ^8.3", + "php": "^8.1 || ^8.2 || ^8.3", "ext-openssl": "*", "ext-hash": "*", "ext-simplexml": "*",