From d4382c56b089604c1d0a74692a88b647045aa512 Mon Sep 17 00:00:00 2001 From: Olha Livitchuk Date: Thu, 5 Sep 2024 12:06:34 +0200 Subject: [PATCH] FRW-8801 Upgraded php ver --- .github/workflows/ci.yml | 8 ++++---- .scrutinizer.yml | 2 +- README.md | 2 +- composer.json | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9594ca6..ace89a8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: fail-fast: false matrix: php-version: [ - '8.2' + '8.3' ] steps: @@ -54,14 +54,14 @@ jobs: - name: Codeception tests run: | - if [[ ${{ matrix.php-version }} == '8.1' ]]; then + if [[ ${{ matrix.php-version }} == '8.2' ]]; then XDEBUG_MODE=coverage vendor/bin/codecept run --coverage-xml else vendor/bin/codecept run fi - name: Code Coverage Report - if: success() && matrix.php-version == '8.1' + if: success() && matrix.php-version == '8.2' uses: codecov/codecov-action@v1 prefer-lowest: @@ -70,7 +70,7 @@ jobs: fail-fast: false matrix: php-version: [ - '8.1' + '8.2' ] steps: diff --git a/.scrutinizer.yml b/.scrutinizer.yml index 228da1c..efe53c6 100644 --- a/.scrutinizer.yml +++ b/.scrutinizer.yml @@ -1,6 +1,6 @@ build: environment: - php: '8.1' + php: '8.2' tests: override: diff --git a/README.md b/README.md index 94a053d..575fa6c 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![CI](https://github.com/spryker/install/workflows/CI/badge.svg?branch=master)](https://github.com/spryker/install/actions?query=workflow%3ACI+branch%3Amaster) [![Coverage](https://codecov.io/gh/spryker/install/branch/master/graph/badge.svg?token=4AKCKMRg3G)](https://codecov.io/gh/spryker/install) [![Latest Stable Version](https://poser.pugx.org/spryker/install/v/stable.svg)](https://packagist.org/packages/spryker/install) -[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.1-8892BF.svg)](https://php.net/) +[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.2-8892BF.svg)](https://php.net/) [![License](https://img.shields.io/github/license/spryker/install.svg)](https://packagist.org/packages/spryker/install) Install module handles project setup using recipes per environment. diff --git a/composer.json b/composer.json index 9df42b2..729e2df 100644 --- a/composer.json +++ b/composer.json @@ -4,7 +4,7 @@ "description": "Install module", "license": "MIT", "require": { - "php": ">=8.1", + "php": ">=8.2", "spryker/kernel": "^3.30.0", "spryker/log": "^3.0.0", "spryker/monolog": "^2.0.0",